Releases: tasanobu-zz/Kamagari
Releases · tasanobu-zz/Kamagari
v1.1.0
- Support Swift 3.0 / Xcode 8
@rmuhamedgaliev
Thank you for your contribution 🙇🙇🙇
v1.0.1
- Fix the warnings on Xcode 7.3
v1.0.0
- Swift 2.0 support
v0.9.0
-
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.0
- First Release