All Versions
7
Latest Version
Avg Release Cycle
212 days
Latest Release
2443 days ago
Changelog History
Changelog History
-
v1.2.0
January 06, 2018 -
v1.1.0 Changes
September 24, 2016- 👌 Support Swift 3.0 / Xcode 8
@rmuhamedgaliev
🍱 Thank you for your contribution 🙇🙇🙇 -
v1.0.1 Changes
March 28, 2016- 🛠 Fix the warnings on Xcode 7.3
-
v1.0.0 Changes
September 10, 2015- 👍 Swift 2.0 support
-
v0.9.0 Changes
September 10, 2015➕ Add a method to
AlertController
in order to configure properties of UIAlertController.popoverPresentationControllerThe following sample is to show an action sheet by specifying the properties of UIPopoverPresentationController with the newly added method
AlertBuilder.setPopoverPresentationProperties()
AlertBuilder(title: "Question", message: "Are you sure where Kamagari is?", preferredStyle: .ActionSheet) .addAction(title: "YES", style: .Default) { _ in } .addAction(title: "Not Sure", style: .Default) { _ in } .setPopoverPresentationProperties(sourceView: view, sourceRect: CGRectMake(0, 0, 100, 100), barButtonItem: nil, permittedArrowDirections: .Any) .build() .kam_show(animated: true)
-
v0.8.1
June 23, 2015 -
v0.8.0 Changes
September 10, 2015- 🚀 First Release