- Fixed search paths. Thanks @deborahgoldsmith!
Unclaimed project
Are you a maintainer of Bond? Claim this project to take control of your public changelog and roadmap.
Drops iOS 8 support through SPM.
Thanks to @ibrahimkteish's awesome contribution, Bond 7.7 introduces the ability to observe view controller lifecycle events! π π
Example usage:
let viewController = UIViewController()
viewController.reactive.lifecycleEvents.observeNext { (event) in
print(event)
}
viewController.reactive.lifecycleEvent(.viewDidLoad).observeNext {
print("view did load")
}
vie...
collectionView(_: numberOfItemsInSection:) open on CollectionViewBinderDataSource. Thanks @AnthonyMDev!