CocoaPods trunk is moving to be read-only. Read more on the blog, there are 12 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Jan 2015 |
Maintained by Aymeric Gallissot.
BKCategories is a collection of categories for a quick start.
#ifdef __OBJC__
...
#import "UIView+Position.h"
#import "UIColor+Hex.h"
...
#endif
UIView *view = [[UIView alloc] initWithFrame:self.view.bounds];
...
view.width = 160.0;
view.left = 160.0;
...
view.backgroundColor = [UIColor colorWithHexString:@"cccccc"];