CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

ActionButton 0.1.5

ActionButton 0.1.5

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Nov 2016
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Lourenço Marinho.



Action Button

Action button is a Floating Action Button inspired from Google Inbox implemented in Swift

Import

You can use CocoaPods to integrate Action Button in your project. You can install it with the following command

$ gem install cocoapods

Update your Podfile to use Action Button

pod 'ActionButton'

Then, run the following command

$ pod install

Requirements

  • iOS 8.0+

Usage

Define your actions

let share = ActionButtonItem(title: "share", image: shareImage)
share.action = { item in println("Sharing...") }

let email = ActionButtonItem(title: "email", image: emailImage)
email.action = { item in println("Email...") }

Create a Action Button with your actions

actionButton = ActionButton(attachedToView: view, items: [share, email])
actionButton.action = { button in button.toggleMenu() }

Enjoy

Action Button

Give it a try

You can try Action Button with CocoaPods

$ pod try ActionButton

Who to blame

More

Action Button is a working in progress so feel free to fork this project and improve it!

License

Action Button is released under the MIT license. See LICENSE for details.