We have made it easy to implement UIAlertController using RxSwift.
build | status |
---|---|
travis CI |
Via SSH: For those who plan on regularly making direct commits, cloning over SSH may provide a better experience (which requires uploading SSH keys to GitHub):
$ git clone git@github.com:RxSwiftCommunity/RxAlert.git
Via https: For those checking out sources as read-only, HTTPS works best:
$ git clone https://github.com/RxSwiftCommunity/RxAlert.git
Add following to Cartfile:
github "RxSwiftCommunity/RxAlert"
CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate RxAlert into your Xcode project using CocoaPods, add following line to the Podfile
pod 'RxUIAlert'
// normal alert
alert(title: "RxAlert",
message: "We have made it easy to implement UIAlertController using RxSwift.")
.subscribe()
.disposed(by: disposeBag)
// textField
alert(title: "RxAlert",
message: "We have made it easy to implement UIAlertController using RxSwift.",
actions: [AlertAction(title: "OK", type: 0, style: .default),
AlertAction(textField: UITextField(), placeholder: "user name"),
AlertAction(textField: UITextField(), placeholder: "password")])
.subscribe(onNext: { (output) in
output.textFields?.forEach {
print ($0.text as? String?)
}
})
.disposed(by: disposeBag)
// actionsheet
alert(title: "RxAlert",
message: "RxAlert Message",
preferredStyle: .actionSheet)
.observeOn(MainScheduler.instance)
.subscribe(onNext: { index in
print("index: \(index)")
}).disposed(by: disposeBag)
Copyright (c) RxSwiftCommunity