Solving Issues

Old Libraries Being Used The pod install process doesn't bother telling you if it is selecting old versions of libraries due to compatability with the version of iOS you are targeting. Its easy to assume that when you run pod install you get the latest version of everything, but in fact you get the latest […]

Read More

Using In A Project

Good Resources http://www.raywenderlich.com/12139/ The Podfile An example podfile with the ios target platform and one library version number specified and another library version not specified: platform :ios, '5.1' pod 'BlocksKit',      '~> 1.8.3' pod 'Reachability'   Updating The Pods Controlled Libraries Run Applications > Utilities > Terminal Navigate to your projects directory.  E.g. right click […]

Read More

Installing Cocoapods

How To Install Cocoapods Appliations > Utilities > Terminal sudo gem install cocoapods pod setup If it fails due to "Failed to build GEM native extension" ensure the xcode Command Line Tools are installed: In xcode close any open project, then Preferences > Downloads > Components and click the download down arrow icon next to […]

Read More