Skip to content

v0.12.0

Compare
Choose a tag to compare
@LowKostKustomz LowKostKustomz released this 07 Jul 07:31
· 27 commits to master since this release

Source-breaking changes

Old

let statusAlert = StatusAlert.instantiate(
    withImage: image,
    title: title,
    message: message,
    canBePickedOrDismissed: isPickable
)

New

let statusAlert = StatusAlert()
statusAlert.image = image
statusAlert.title = title
statusAlert.message = message
statusAlert.canBePickedOrDismissed = isPickable

Fixed

  • multiplePresentationsBehavior default value is .ignoreIfAlreadyPresenting now

What's new

  • Added reusing some UI elements, such as UIImageViews, UILabels and space UIViews