import UIKit
import TMDBClient
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
TMDBClient.sharedInstance.APIKey = "{API_KEY}"
TMDBClient.sharedInstance.callService(.Configuration) { json in
print(json)
}
}
}
获取一个可观察对象
import UIKit
import RxSwift
import TMDBClient
class ViewController: UIViewController {
var disposeBag = DisposeBag()
override func viewDidLoad() {
super.viewDidLoad()
TMDBClient.sharedInstance.APIKey = "{API_KEY}"
TMDBClient.sharedInstance.rx_JSON(.Configuration)
.subscribeNext { json in
print(json)
}
.addDisposableTo(disposeBag)
}
}
CocoaPods TMDBClient 通过 CocoaPods 提供。要安装它,请简单地将以下行添加到 Podfile 中
pod "TMDBClient"
或者要获取 RxSwift 支持
pod "TMDBClient/Rx"
Carthage 您也可以使用 Carthage 进行安装
github "TMDBClient/TMDBClient"
TMDBClient 需要 Swift 2.0,以及 RxAlamofire(2.0)、RxSwift(2.0.0-beta)和 SwiftyJSON 的专用版本。
TMDBClient 在 MIT 许可证下提供。有关更多信息,请参阅 LICENSE 文件。