Skip to content

RxUIAlertController is a wrapper library to work with RxSwift and UIAlertController.

License

Notifications You must be signed in to change notification settings

roshanman/RxUIAlertController

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RxUIAlertController

CocoaPods Swift 4 License Platform

RxUIAlertController is a wrapper library to work with RxSwift and UIAlertController.

Installation

RxUIAlertController is available through CocoaPods.

pod 'RxUIAlertController'

Sample code

Alert(title: "Test", message: "This is a test message.")
    .addAction(title: "Yes")
    .addAction(title: "No", style: .destructive)
    .addTextField{
        $0.placeholder = "placeholder"
    }
    .rx.show()
    .subscribe(onNext: {
        print("button: \($0.buttonTitle)")
        print($0.controller.textFields?.first?.text ?? "")
    })
    .addDisposableTo(disposeBag)

ActionSheet(title: "Test", message: "This is a test message.")
    .addAction(title: "Yes")
    .addAction(title: "No", style: .destructive)
    .addAction(title: "Cancel", style: .cancel)
    .setPresenting(source: sender)
    .rx.show()
    .subscribe(onNext: {
        print("button: \($0.buttonTitle)")
    })
    .addDisposableTo(disposeBag)

Example

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

License

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

About

RxUIAlertController is a wrapper library to work with RxSwift and UIAlertController.

Topics

Resources

License

Stars

Watchers

Forks

Packages