I would recommend that you setup CocoaPods and learn how to use this. Mainly because there are so many 3rd party frameworks which support CocoaPods, but also because Google announced at this year's Google I/O that they will use CocoaPods as their main tool for distributing their iOS frameworks (such as Google Maps or Google Analytics).
You can read the official CocoaPods Guide - Getting Started to setup CocoaPods on your computer. It's actually quite simply since it's possible to install with Ruby with the command:
sudo gem install cocoapods
Afterwards you will need to create a Podfile
in the same folder as your Xcode project (the *.xcodeproj
file) with the following content:
use_frameworks!
pod 'Bond'
pod 'Parse'
And then run the command pod install
in your terminal when located in the same folder.