RxImageView
示例
要运行示例项目,请克隆存储库,然后首先从 Example 目录运行 pod install
。
安装
RxImageView 通过 CocoaPods 提供。要安装它,只需将以下行添加到您的 Podfile 中
pod "RxImageView"
如何使用
let imageView = UIImageView()
_ = Observable.just(URL(string: "https://lorempixel.com/400/200/cats"))
.bind(to: imageView.rx.imageURL)
_ = Observable.just(URL(string: "https://lorempixel.com/400/200/animals"))
.bind(to: imageView.rx.imageURL(withPlaceholder: #image))
作者
许可
RxImageView 在 MIT 许可下可用。更多信息请参阅 LICENSE 文件。