Skip to content

Releases: Minitour/AZDialogViewController

Release 1.3.4

16 Mar 17:22
Compare
Choose a tag to compare
  • 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

13 Mar 19:39
Compare
Choose a tag to compare
  • 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

13 Dec 20:06
Compare
Choose a tag to compare

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

03 Nov 14:07
Compare
Choose a tag to compare
1.2.0

Added swift-version

Added Carthage Support

13 Sep 06:30
Compare
Choose a tag to compare
1.1.5

Updated podspec

Update 1.1.4

04 Aug 19:53
Compare
Choose a tag to compare
  • 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

25 Jul 15:49
Compare
Choose a tag to compare
  • Added support for interactable views inside the container.
  • Added contentOffset to allow shifting the dialog.

Added backgroundAlpha

18 Apr 07:43
Compare
Choose a tag to compare
1.0.2

Added backgroundAlpha

Updated Access Modifieres

17 Apr 14:40
Compare
Choose a tag to compare
1.0.1

Updated Access Modifieres

First Release

16 Apr 00:59
Compare
Choose a tag to compare
1.0.0

Added Podspec