# GBFlatButton **Repository Path**: ICBC/GBFlatButton ## Basic Information - **Project Name**: GBFlatButton - **Description**: A flat and light implementation of UIButton for iOS - **Primary Language**: Objective-C - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-07-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # GBFlatButton [![Version](https://img.shields.io/cocoapods/v/GBFlatButton.svg?style=flat)](http://cocoadocs.org/docsets/GBFlatButton) [![License](https://img.shields.io/cocoapods/l/GBFlatButton.svg?style=flat)](http://cocoadocs.org/docsets/GBFlatButton) [![Platform](https://img.shields.io/cocoapods/p/GBFlatButton.svg?style=flat)](http://cocoadocs.org/docsets/GBFlatButton) ## Installation GBFlatButton is available through [CocoaPods](http://cocoapods.org), to install it simply add the following line to your Podfile: ```ruby pod "GBFlatButton" ``` But if you don't use CocoaPods, you can just copy the `Classes` folder into your project. ## Screenshots ![Buttons example](https://raw.github.com/barbosa/GBFlatButton/master/screenshot.png) ## Usage To create a flat button programmatically, just instantiate a new `GBFlatButton` with a frame and add it to some view, for example: ```objc 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: ```objc @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](http://twitter.com/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.