All Versions
10
Latest Version
Avg Release Cycle
63 days
Latest Release
2032 days ago
Changelog History
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}
- โ Added