Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 443 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 443 Bytes

BKCategories is a collection of categories for a quick start.

Usage

  • UIColor+Helpers
  • UIView+Position

Prefix header (Prefix.pch)

#ifdef __OBJC__
    ...
    #import "UIView+Position.h"
    #import "UIColor+Helpers.h"
	...
#endif

Example

UIView *view = [[UIView alloc] initWithFrame:self.view.bounds];
...
view.width = 160.0;
view.left = 160.0;
...
view.backgroundColor = [UIColor colorWithHexString:@"cccccc"];