rinov / RxSmartBag

A simple way to omit declararing DisposeBag in anywhere if the object inherit from NSObject.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RxSmartBag

Language License Platform

About

A simple way to omit declararing DisposeBag.

Example

import UIKit
import RxSmartBag

extension UIViewController: SmartBagManagerable {}
import RxSmartBag

class ViewController: UIViewController {
  override func viewDidLoad() {
    super.viewDidLoad()

    // `smartBag` is able to use without declararing, and can bind simply by operator.
    
    // Example 1:
    observable.subscribe(...).disposed(by: smartBag)
    
    // Example 2:
    observable.subscribe(...).disposed(by: self)
    
    // Example 3:
    smartBag += observable.subscribe(...)

}

Installation

RxSmartBag is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "RxSmartBag"

Swift3: pod "RxSmartBag", "~> 1.0.2"

Swift4: pod "RxSmartBag", "~> 2.0.0"

Author

rinov, rinov@rinov.jp

License

RxSmartBag is available under the MIT license. See the LICENSE file for more info.

About

A simple way to omit declararing DisposeBag in anywhere if the object inherit from NSObject.

License:MIT License


Languages

Language:Swift 96.8%Language:Shell 2.8%Language:Objective-C 0.3%Language:Ruby 0.1%