AZDialogViewController v1.2.1 Release Notes

Release Date: 2017-12-13 // over 6 years ago
  • ➕ Added New APIs

    • ➕ Added blurBackground - true by default, shows a UIVisualEffectView when displaying the dialog.
    • ➕ Added blurEffectStyle - default is .dark
    • ➕ Added buttonInit closure variable which allows the initalization of a custom UIButton.

    Usage Examples:

    //true by defaultdialog.blurBackground = true//default is darkdialog.blurEffectStyle = .extraLightdialog.buttonInit = { index in//set a custom button only for the first indexreturn index == 0 ? HighlightableButton() : nil}