Skip to content

Releases: LowKostKustomz/StatusAlert

v0.9.3

31 Dec 23:47

Choose a tag to compare

Added blur availability check and "Reduce transparency" mode support.

v0.9.2

09 Dec 16:52

Choose a tag to compare

  • Added and fixed some comments
  • Added iPad support
  • Fixed title default font size
  • Added Carthage support
  • Updated README.md

v0.9.1

09 Dec 12:31

Choose a tag to compare

Source-breaking changes

You should no longer call prepare() method before showing StatusAlert.

Old

let statusAlert = StatusAlert.instantiate(
    withImage: UIImage(named: "Some image name"),
    title: "StatusAlert title",
    message: "Message to show beyond title",
    canBePickedOrDismissed: isUserInteractionAllowed)
statusAlert.prepare()
statusAlert.show(
    in: viewShowAlertIn,
    withVerticalPosition: .center(offset: 0))

New

let statusAlert = StatusAlert.instantiate(
    withImage: UIImage(named: "Some image name"),
    title: "StatusAlert title",
    message: "Message to show beyond title",
    canBePickedOrDismissed: isUserInteractionAllowed)
// prepare() method called automatically before showing
statusAlert.show(
    in: viewShowAlertIn,
    withVerticalPosition: .center(offset: 0))

v0.9.0

09 Dec 12:29

Choose a tag to compare

Initial release