Found on GitHub: MPFoldTransition

Mark Pospesel has a couple of nice repos that demo the popular folding and flipping animated transitions and effects seen in so many iOS apps these days. Take a look at MPFoldTransition and MPFlipViewController on GitHub or include them in your Pod file since...
Found on GitHub: ObjectiveSugar

Found on GitHub: ObjectiveSugar

Marin Usalj has written a collection of extensions for the NSNumber, NSArray, NSSet, NSString, and NSDictionary classes that brings many of the commonly used methods from their Ruby counterparts such as each or times. If you’re familiar with Ruby and doing some...

Cocoapods for Testing HTTP Interactions

When writing code to access resources over HTTP or another protocol it’s great to write some tests to make sure that code is working well, but running them can be a pain when working over a slow connection, with large requests, or when working offline. Two great...

Optimizing Network Requests with MKNetworkKit

Mugunth Kumar has a great blog post titled “Mobile apps and concurrent connections” with some fantastic details about the HTTP spec and how most browsers handle concurrent connections to a server, what optimizations he’s made in MKNetworkKit, and...

GitHub’s Mantle for Cocoa and Cocoa Touch

Earlier this week GitHub announced Mantle, a model framework for Objective-C that is lighter weight than Core Data and well suited to implementing a model layer for an app that interacts with web services. The project is available on GitHub and also as a Cocoapods pod...