Cocoa Bird Objective-c to Twitter Library

Cocoa Bird is an open-source Twitter API for Objective-C/Cocoa on iOS (iPhone and iPad devices). It covers nearly all of the Twitter REST API, all of the Twitter Web Intents, and makes the nightmarish OAuth process into a Sunday drive.

Features include:

 

 
The goal of Cocoa Bird is to make Twitter interaction INSANELY EASY for iOS developers. Authenticating your user is just a few simple method calls. We’ve strongly typed all the data you send to and receive from Twitter. That means when you search for a user, you don’t get back an NSDictionary with unpredictable keys & unpredictable types. You get back a CBUser object (CB is a Cocoa Bird prefix) that has a name property, follower_count property, and about 30 other properties!

Another great feature of Cocoa Bird is that it supports every API call both synchronous and asynchronous. Normally async works best since you don’t want to look like an idiot locking up the UI while your data loads. But sometimes you’re already in a background thread and synchronous is exactly what you need!

Get Started >>

Check out the Docs >>