An RSS/Atom feed parser
- iOS 8.0+ / Mac OS X 10.9+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 7.3+
CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate FeedParser into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
target 'MyApp' do
pod 'FeedParser', '~> 2.0'
end
Then, run the following command:
$ pod install
Or, if you just wish try it out, run the following command:
$ pod try FeedParser
Carthage is a dependency manager that builds your dependencies and provides you with binary frameworks.
To install Carthage with Homebrew use the following command:
$ brew update
$ brew install carthage
To integrate FeedParser into your Xcode project using Carthage, specify it in your Cartfile
:
github "nmdias/FeedParser" ~> 2.0
Build the framework:
$ carthage update
Then, drag the built FeedParser.framework
into your Xcode project.
FeedParser is released under the MIT license. See LICENSE for details.