blog

CocoaPods – Library Management for Objective-C Projects

by

Eloy Durán – a Ruby, MacRuby, and Objective-C developer created CocoaPods to help manage library dependencies in Objective-C projects. It’s similar to Bundler which is used by many Ruby projects. The cocoapods tool downloads, installs, and updates Pods (libraries) and helps build an Xcode workspace file so the libraries are linked to your Xcode project correctly.
The CocoaPods site has a wiki with some documentation to help you get started using CocoaPods but some great tutorials have been published recently too.

Follow @CocoaPodsOrg on Twitter for announcements of new and updated Pods or check out the Specs repository on GitHub for the complete list of available Pods.

+ more

Accurate Timing

Accurate Timing

In many tasks we need to do something at given intervals of time. The most obvious ways may not give you the best results. Time? Meh. The most basic tasks that don't have what you might call CPU-scale time requirements can be handled with the usual language and...

read more