Bootstrap风格按钮
文章目录
如何使用
- 将
UIButton+Bootstrap
,NSString+FontAwesome
,FontAwesome.ttf
文件添加进工程 - 导入
UIButton+Bootstrap.h
- 在
Info.plist
中的Fonts provided by application
中包含FontAwesome.ttf
创建自定义的UIButoon(把type属性设置为Custom)
设置风格
1 | [yourButton primaryStyle]; |
设置图标
1 | [yourButton addAwesomeIcon:FAIconBookmark beforeTitle:YES]; |