3.0.0 — Peterbald Orange Camel
What's Changed
- fix #29 Create one dismissHandler with two param instead dismissHa… by @UriyDevyataev in #32
- fix #31 Add option to hide currentValueView by @UriyDevyataev in #34
- fix #28 Add indication current date by @UriyDevyataev in #36
[Breaking change] Instead of doneHandler you should use dismissHandler
with action
parameter:
was:
fastisController.doneHandler = { [weak self] result in
...
}
become:
fastisController.dismissHandler = { [weak self] action in
switch action {
case .done(let newValue):
...
case .cancel:
...
}
}
Full Changelog: 2.3.0...3.0.0