Class to create flat buttons.
- ARC
- QuartzCore.framework
Copy FlatButton.h and FlatButton.m into your project.
Import #import "FlatButton.h"
where you plan to create the buttons.
Implementation code below:
FlatButton *flatBtn = [[FlatButton alloc] initWithFrame:CGRectMake(10,10,148,100) withBackgroundColor:[UIColor grayColor]];
[self.view flatBtn];
There are more implementation examples in the attached project.
Jason Everett
##License MIT License - fork, modify and use however you want.