Skip to content

barbosa/GBFlatButton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[DEPRECATED] GBFlatButton

Version License Platform

Installation

GBFlatButton is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "GBFlatButton"

But if you don't use CocoaPods, you can just copy the Classes folder into your project.

Screenshots

Buttons example

Usage

To create a flat button programmatically, just instantiate a new GBFlatButton with a frame and add it to some view, for example:

GBFlatButton *button = [[GBFlatButton alloc] initWithFrame:CGRectMake(originX, originY, width, height)];
button.tintColor = [UIColor orangeColor]; // or import UIColor+GBFlatButton.h and use our cool colors
[button setTitle:@"An orange button" forState:UIControlStateNormal];
[self.view addSubview:button];

But you can also create a GBFlatButton via Interface Builder. To do it, drag a UIButton and drop it onto your view, change its custom class to GBFlatButton and customize it inside its File's Owner. For example:

@implementation MyViewController ()
@property (weak, nonatomic) IBOutlet GBFlatButton *flatButton;
@end

@implementation MyViewController
- (void)viewDidLoad
{
    [super viewDidLoad];
    _flatButton.tintColor = [UIColor orangeColor];
}
@end

Note

For iOS > 7.0, you can set the value of tintColor directly via Interface Builder.

Author

Gustavo Barbosa @gustavocsb

License

Copyright (c) 2015 Gustavo Barbosa

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.

About

[DEPRECATED] A flat and light implementation of UIButton for iOS

Resources

License

Stars

Watchers

Forks

Packages

No packages published