Skip to content

Releases: tasanobu-zz/Kamagari

v1.1.0

24 Sep 13:13
Compare
Choose a tag to compare
  • Support Swift 3.0 / Xcode 8

@rmuhamedgaliev
Thank you for your contribution 🙇🙇🙇

v1.0.1

28 Mar 12:42
Compare
Choose a tag to compare
  • Fix the warnings on Xcode 7.3

v1.0.0

10 Sep 06:01
Compare
Choose a tag to compare
  • Swift 2.0 support

v0.9.0

10 Sep 05:54
Compare
Choose a tag to compare
  • Add a method to AlertController in order to configure properties of UIAlertController.popoverPresentationController

    The 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

10 Sep 05:53
Compare
Choose a tag to compare
  • First Release