rabbitmq-tutorials/objective-c
2016-05-03 11:25:02 +01:00
..
tutorial1 Bump ObjC client 2016-05-03 11:25:02 +01:00
tutorial2 Bump ObjC client 2016-05-03 11:25:02 +01:00
tutorial3 Bump ObjC client 2016-05-03 11:25:02 +01:00
tutorial4 Bump ObjC client 2016-05-03 11:25:02 +01:00
tutorial5 Bump ObjC client 2016-05-03 11:25:02 +01:00
.gitignore Tutorial 1 for Objective-C 2016-04-04 15:42:09 +01:00
README.md Tutorial 1 for Objective-C 2016-04-04 15:42:09 +01:00

Objective-C code for RabbitMQ tutorials

Objective-C code examples for the RabbitMQ tutorials.

Requirements

To run this code you need Carthage to pull down dependencies, which include the Objective-C client itself.

If you have Homebrew installed, simply:

brew install carthage

You also need a running RabbitMQ server on localhost.

Installation

Each tutorial has its own Xcode project. Before the projects can be run, you need to download and build their dependencies.

For example, to install tutorial 1:

cd tutorial1
carthage bootstrap --platform iOS

You should then be able to open the project in Xcode and hit Run. Output is NSLogged.

See ViewController.m for the implementation (each tutorial has its own ViewController.m).