SwiftyJSON uses a certain version of Alamofire to guarentee that it works properly. As such it uses git submodules. This assumes that you have a local git repo for your project.
Type the following in the terminal located in your project's git repo directory.
git submodule add https://github.com/SwiftyJSON/Alamofire-SwiftyJSON
git submodule update --init --recursive
Next, you need to add the Alamofire-SwiftyJSON.xcodeproj as a subproject to your project in xcode and configure it.
- Open the Alamofire-SwiftyJSON folder, and drag Alamofire-SwiftyJSON.xcodeproj into the file navigator of your app project.
- In Xcode, navigate to the target configuration window, navigate to Build Phases, and add AlamofireSwiftyJSON.framework under the "Target Dependencies".
- Click on the + button at the top left of the panel and select "New Copy Files Phase". Rename this new phase to "Copy Frameworks", set the "Destination" to "Frameworks", and add AlamofireSwiftyJSON.framework.
Link to SwiftyJSON https://github.com/SwiftyJSON/SwiftyJSON
Link to Alamofire https://github.com/Alamofire/Alamofire
NSHipster: a journal of the overlooked bits in Objective-C, Swift, and Cocoa. Updated weekly.
objc.io: not just objective c--they have swift too!
iOS Dev Weekly: hand picked round up of the best iOS development links every week.
SoSoSwift: shitty website, good content regarding swift resources.
LearnSwift.tips: A curated list of helpful resources to learn Swift. Tutorials, Code Samples, References and more!
cocoa controls: shitty website, but a ton of awesome open source libraries updated frequently.
Functional Programming in Swift: A really good book (not free) on functional programming.