All Versions
7
Latest Version
Avg Release Cycle
212 days
Latest Release
2300 days ago

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.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.1

    June 23, 2015
  • v0.8.0 Changes

    September 10, 2015
    • ๐Ÿš€ First Release