v0.12.0
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
UIImageView
s,UILabel
s and spaceUIView
s