BKCategories 0.2

BKCategories 0.2

测试已测试
Lang语言 Obj-CObjective C
许可证 MIT
发布上次发布2015年1月

Aymeric Gallissot维护。



  • 作者:
  • Aymeric Gallissot

BKCategories是一个快速开始的分类集合。

使用方法

  • UIColor+Hex
  • UIView+Position

前缀头(Appname-Prefix.pch)

#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"];