define('DISALLOW_FILE_EDIT', true); define('DISALLOW_FILE_MODS', true); iOS Development | WP Hosting

Posts Tagged "iOS Development"

How to parse a JSON URL in iOS and Cocoa

Posted on Apr 14, 2013

Both Cocoa and iOS have built-in methods to parse (and generate) JSON data using NSJSONSerialization. Most commonly you’ll want to call a URL with parameters which will return some data. You take this...

Learn More

How to use a Selector

Posted on Apr 8, 2013

Just a quick reminder before I forget (again) how selectors are called: Some of Apple’s pre-written methods use whats known as a Selector. Here’s an example method that uses a selector: // create...

Learn More