All Versions
10
Latest Version
Avg Release Cycle
63 days
Latest Release
1759 days ago

Changelog History

  • v1.3.8

    July 03, 2019
  • v1.3.7

    April 28, 2019
  • v1.3.6

    March 17, 2019
  • v1.3.5

    March 16, 2019
  • v1.3.4 Changes

    March 16, 2019
    • ➕ Added applyAnimatedTranslation function which allows you to apply simulated dragging. This can be used when simulating a scroll.
    • 🔦 Exposed the UIPanGestureRecognizer object of the main frame allow delegation control externally.
  • v1.3.3

    March 15, 2019
  • v1.3.2

    March 15, 2019
  • v1.3.1 Changes

    March 13, 2019
    • 🔧 Grouped all constants into a configurable struct.
    • ➕ Added better support iPhones and iPads.
    • 🛠 Fixed bug where if dialog is presented in a navigation controller the fonts appear small.
  • v1.3.0

    October 02, 2018
  • v1.2.1 Changes

    December 13, 2017

    ➕ 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}