Skip to content

RxSwiftCommunity/RxAlert

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

RxAlert

Overview

We have made it easy to implement UIAlertController using RxSwift.

build status
Github Actions build

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'

Usage

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

pod install 

Sample code

// normal alert
rx.alert(title: "RxAlert",
         message: "We have made it easy to implement UIAlertController using RxSwift.")
   .subscribe()
   .disposed(by: disposeBag)

// textField
rx.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
rx.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