Monday, February 9, 2015

Learning CocoaPods Part 1


CocoaPods is dependency manager for projects, it has Thousands of library, which can help you to scale your project elegantly.

We may have integrated Facebook API, Twitter API, Google Analytics etc, all we need to do is to drag and drop files in our projects.

What if the library gets updated, then we need to again download the library files and paste into our project. Every time we want our library to up to date.

For Handling multiple dependency we can use Cocoa Pods, its very simple in use and it give ready to use library.

Steps to Install Cocoa Pods Into your system

1. Open Terminal
2. $ sudo gem install cocoapods

Now it will take some time,














After successful installation your mac machine is ready to use CocoaPods.

In Next section we will implement small project using Cocoa Pods

Create project using CocoaPods

No comments:

Post a Comment