Skip to content

Releases: Minitour/AZDialogViewController

Release 1.3.4

Choose a tag to compare

@Minitour Minitour released this 16 Mar 17:22
  • 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

Choose a tag to compare

@Minitour Minitour released this 13 Mar 19:39
  • 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

Choose a tag to compare

@Minitour Minitour released this 13 Dec 20:06

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

Choose a tag to compare

@Minitour Minitour released this 03 Nov 14:07
1.2.0

Added swift-version

Added Carthage Support

Choose a tag to compare

@Minitour Minitour released this 13 Sep 06:30
1.1.5

Updated podspec

Update 1.1.4

Choose a tag to compare

@Minitour Minitour released this 04 Aug 19:53
  • 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

Choose a tag to compare

@Minitour Minitour released this 25 Jul 15:49
  • Added support for interactable views inside the container.
  • Added contentOffset to allow shifting the dialog.

Added backgroundAlpha

Choose a tag to compare

@Minitour Minitour released this 18 Apr 07:43
1.0.2

Added backgroundAlpha

Updated Access Modifieres

Choose a tag to compare

@Minitour Minitour released this 17 Apr 14:40
1.0.1

Updated Access Modifieres

First Release

Choose a tag to compare

@Minitour Minitour released this 16 Apr 00:59
1.0.0

Added Podspec