All Versions
7
Latest Version
Avg Release Cycle
212 days
Latest Release
1148 days ago
Changelog History
Changelog History
-
v1.2.0
January 06, 2018 -
v1.1.0
September 24, 2016- ๐ Support Swift 3.0 / Xcode 8
@rmuhamedgaliev
๐ฑ Thank you for your contribution ๐๐๐ -
v1.0.1
March 28, 2016- ๐ Fix the warnings on Xcode 7.3
-
v1.0.0
September 10, 2015- ๐ Swift 2.0 support
-
v0.9.0
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
September 10, 2015- ๐ First Release