Skip to content

Releases: RxSwiftCommunity/RxAlertViewable

0.8.3

27 Jul 10:40
Compare
Choose a tag to compare
  • Make UIAlertItem public.

0.8.2

26 Jul 01:40
Compare
Choose a tag to compare
  • Fix the default confirm title.

0.8.1

25 Jul 09:59
Compare
Choose a tag to compare
  • Fix the error title.

0.8

24 Jul 10:10
Compare
Choose a tag to compare
0.8
  • Add RxAlertItem protocol for data binding of customized RxAlertController.

0.7.1

23 Jul 09:13
Compare
Choose a tag to compare
  • Add imageUrlString.

0.7

10 Jul 07:20
6e26eb4
Compare
Choose a tag to compare
0.7
  • Support customized alert controller.

0.6

22 May 03:00
Compare
Choose a tag to compare
0.6
  • RxSwift 5.0 compatible.
  • Support action sheet (beta).

0.5.1

28 Mar 02:07
2057245
Compare
Choose a tag to compare
  • Fix the building warnings after Xcode 10.2.
  • Update to Swift 5.

0.5

16 Jan 10:43
Compare
Choose a tag to compare
0.5
  • Support customised confirm and deny title for customConfirm.

0.4

18 Dec 03:43
Compare
Choose a tag to compare
0.4

The version 0.4 changed the type of RxAlert from enum to struct.
To migrate to the version 0.4, replace RxAlertCreator.instance.config with RxAlert.config to set the global config.

RxAlert.config = RxAlertConfig(tip: "My Tip",
                               confirm: "My Confirm",
                               warning: "My Warning",
                               error: "My Error",
                               yes: "My Yes",
                               no: "My No",
                               ok: "My OK",
                               tintColor: .blue)