Simple Floating Action Button for iOS
- iOS 8.0+
- Swift 2.0
- Xcode 7
use_frameworks!
pod "KCFloatingActionButton"
To install manually the KCFloatingActionButton in an app, just drag the KCFloatingActionButton/*.swift
file into your project.
KCFABManager.defaultInstance().getButton().addItem(title: "Hello, World!")
KCFABManager.defaultInstance().show()
[[[KCFABManager defaultInstance] getButton] addItemWithTitle:@"Hello, world!"];
[[KCFABManager defaultInstance] show:true];
let fab = KCFloatingActionButton()
fab.addItem(title: "Hello, World!")
self.view.addSubview(fab)
KCFloatingActionButton *fab = [[KCFloatingActionButton alloc] init];
[fab addItemWithTitle:@"Hello, World!"];
[self.view addSubview:fab];
let fab = KCFloatingActionButton()
fab.addItem("Hello, World!", icon: UIImage(named: "icon")!)
self.view.addSubview(fab)
KCFloatingActionButton *fab = [[KCFloatingActionButton alloc] init];
[fab addItem:@"Hello, World" icon:[UIImage imageNamed:@"icon"]];
[self.view addSubview:fab];
let fab = KCFloatingActionButton()
fab.addItem("I got a handler", icon: UIImage(named: "icon")!, handler: { item in
let alert = UIAlertController(title: "Hey", message: "I'm hungry...", preferredStyle: .Alert)
alert.addAction(UIAlertAction(title: "Me too", style: .Default, handler: nil))
self.presentViewController(alert, animated: true, completion: nil)
fab.close()
})
self.view.addSubview(fab)
KCFloatingActionButton *fab = [[KCFloatingActionButton alloc] init];
__weak KCFloatingActionButton *_fab = fab;
[fab addItem:@"I got a handler" icon:[UIImage imageNamed:@"icon"] handler:^(KCFloatingActionButtonItem *item) {
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Hey" message:@"I'm hungry..." preferredStyle:UIAlertControllerStyleAlert];
[alert addAction:[UIAlertAction actionWithTitle:@"Me too" style:UIAlertActionStyleDefault handler:nil]];
[self presentViewController:alert animated:true completion:nil];
[_fab close];
}];
[self.view addSubview:fab];
let item = KCFloatingActionButtonItem()
item.buttonColor = UIColor.blueColor()
item.title = "Custom item"
KCFABManager.defaultInstance().getButton().addItem(item: item)
KCFloatingActionButtonItem *item = [[KCFloatingActionButtonItem alloc] init];
item.buttonColor = [UIColor blueColor];
item.title = @"Custom item";
[[[KCFABManager defaultInstance] getButton] addItemWithItem:item];
Method | Parameter | Return type | Description |
---|---|---|---|
defaultInstance | KCFABManager | Return singleton object. | |
show | animated: Bool = true | Show KCFloatingActionButton object. |
|
hide | animated: Bool = true | Hide KCFloatingActionButton object. |
|
toggle | animated: Bool = true | Toggle show/hide. | |
isHidden | Bool | Check Floating Action Button to hidden. | |
getButton | KCFloatingActionButton | Return KCFloatingActionButton object. |
Method | Parameter | Return type | Description |
---|---|---|---|
open | Show items. | ||
close | Hide items. | ||
toggle | Toggle show/hide. | ||
addItem | item item: KCFloatingActionButtonItem | Add the custom item. | |
addItem | title title: String | KCFloatingActionButtonItem | Add the default item that has title only. |
addItem | title: String, icon: UIImage | KCFloatingActionButtonItem | Add the default item that has title and icon. |
addItem | title: String, icon: UIImage, handler: ((KCFloatingActionButtonItem) -> Void) | KCFloatingActionButtonItem | Add the default item that has all params. |
addItem | icon icon: UIImage | KCFloatingActionButtonItem | Add the default item that has icon only. |
addItem | icon: UIImage, handler: ((KCFloatingActionButtonItem) -> Void) | KCFloatingActionButtonItem | Add the default item that has icon and handler. |
removeItem | item: KCFloatingActionButtonItem | Remove the item. |
Property | Type | Description |
---|---|---|
size | CGFloat | Button size. |
padding | CGFloat | |
buttonColor | UIColor | |
plusColor | UIColor | Plus icon color on the inside button. |
overlayColor | UIColor | The background color that appears when the icons show. |
closed | Bool | Check items open and close |
itemSpace | CGFloat | |
itemSize | CGFloat | |
itemButtonColor | UIColor |
Property | Type | Description |
---|---|---|
size | CGFloat | Button size. |
buttonColor | UIColor | |
circleShadowColor | UIColor | |
titleShadowColor | UIColor | |
title | String | |
icon | UIImage | |
handler | ((KCFloatingActionButtonItem) -> Void)? | Touch up inside event handler |
- More animate style
- Highly customizable
- Add documentation
Storyboard supportSwift 1.2 supportObjective-C support
The MIT License (MIT)
Copyright (c) 2015 Lee Sun-Hyoup
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.