Skip to content

RxSwiftCommunity/RxSegue

Repository files navigation

RxSegue

Reactive generic segue, implemented with RxSwift.

Build Status Version License Platform

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Example

RxSegueExample

class ViewController: BaseViewController {
    let disposeBag = DisposeBag()
    @IBOutlet var pushButton: UIButton!
    @IBOutlet var presentButton: UIButton!
    @IBOutlet weak var dismissButton: UIButton!

    var voidSegue: AnyObserver<Void> {
        return ModalSegue(fromViewController: self,
            toViewControllerFactory: { (sender, context) -> SecondViewController in
                return SecondViewController()
        }).asObserver()
    }

    var profileSegue: AnyObserver<ProfileViewModel> {
            return NavigationSegue(fromViewController: self.navigationController!,
                toViewControllerFactory: { (sender, context) -> ProfileViewController in
                    let profileViewController: ProfileViewController = ...
                        profileViewController.profileViewModel = context
                    return profileViewController
            }).asObserver()
    }

    override func viewDidLoad() {
        super.viewDidLoad()

        presentButton.rx.tap
            .bindTo(voidSegue)
            .addDisposableTo(disposeBag)

        pushButton.rx.tap
            .map {
                return ProfileViewModel(name: "John Doe",
                    email: "JohnDoe@example.com",
                    avatar: UIImage(named: "avatar"))
            }
            .bindTo(profileSegue)
            .addDisposableTo(disposeBag)
    }

}

Installation

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

pod "RxSegue"

License

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