Releases: Minitour/AZDialogViewController
Releases · Minitour/AZDialogViewController
Release 1.3.4
Better configuration settings and bug fixes
- 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.
Version 1.2.1
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 default
dialog.blurBackground = true
//default is dark
dialog.blurEffectStyle = .extraLight
dialog.buttonInit = { index in
//set a custom button only for the first index
return index == 0 ? HighlightableButton() : nil
}
Swift 4.0 Support
1.2.0 Added swift-version
Added Carthage Support
1.1.5 Updated podspec
Update 1.1.4
- Fixed content offset bug.
- Added
estimatedHeight
var that returns the estimated height of the dialog view even it if it hasn't been loaded yet. - Added
rubberEnabled
var which is true by default. when enabled it will add a rubber effect when trying to swipe the dialog up.
Update 1.1.3
- Added support for interactable views inside the
container
. - Added
contentOffset
to allow shifting the dialog.
Added backgroundAlpha
1.0.2 Added backgroundAlpha
Updated Access Modifieres
1.0.1 Updated Access Modifieres
First Release
1.0.0 Added Podspec