Releases: Minitour/AZDialogViewController
Releases · Minitour/AZDialogViewController
Release list
Release 1.3.4
- 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.
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
buttonInitclosure 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
Added Carthage Support
Update 1.1.4
- Fixed content offset bug.
- Added
estimatedHeightvar that returns the estimated height of the dialog view even it if it hasn't been loaded yet. - Added
rubberEnabledvar 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
contentOffsetto allow shifting the dialog.
Added backgroundAlpha
Updated Access Modifieres
1.0.1 Updated Access Modifieres