Skip to content

3.0.0 — Peterbald Orange Camel

Compare
Choose a tag to compare
@ilia3546 ilia3546 released this 26 Sep 14:06
· 26 commits to master since this release

What's Changed

[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