Skip to content

RxSwiftCommunity/RxSegue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

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

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

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

    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.