Skip to content

Woollim/RxAlert

 
 

Repository files navigation

RxAlert

Overview

We have made it easy to implement UIAlertController using RxSwift.

build status
travis CI

Use it

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

Carthage

Add following to Cartfile:

github "RxSwiftCommunity/RxAlert"

Cocoapods

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'

Sample code

// 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)

LICENCE

Copyright (c) RxSwiftCommunity

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 80.1%
  • Ruby 12.7%
  • Objective-C 7.2%