| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*!
- * @header BAKit.h
- *
- * @brief BAKit
- *
- * @author 博爱
- * @copyright Copyright © 2016年 博爱. All rights reserved.
- * @version V1.0
- */
- // _ooOoo_
- // o8888888o
- // 88" . "88
- // (| -_- |)
- // O\ = /O
- // ____/`---'\____
- // . ' \\| |// `.
- // / \\||| : |||// \
- // / _||||| -:- |||||- \
- // | | \\\ - /// | |
- // | \_| ''\---/'' | |
- // \ .-\__ `-` ___/-. /
- // ___`. .' /--.--\ `. . __
- // ."" '< `.___\_<|>_/___.' >'"".
- // | | : `- \`.;`\ _ /`;.`/ - ` : | |
- // \ \ `-. \_ __\ /__ _/ .-` / /
- // ======`-.____`-.___\_____/___.-`____.-'======
- // `=---='
- //
- // .............................................
- // 佛祖镇楼 BUG辟易
- // 佛曰:
- // 写字楼里写字间,写字间里程序员;
- // 程序人员写程序,又拿程序换酒钱。
- // 酒醒只在网上坐,酒醉还来网下眠;
- // 酒醉酒醒日复日,网上网下年复年。
- // 但愿老死电脑间,不愿鞠躬老板前;
- // 奔驰宝马贵者趣,公交自行程序员。
- // 别人笑我忒疯癫,我笑自己命太贱;
- // 不见满街漂亮妹,哪个归得程序员?
- /*
-
- *********************************************************************************
- *
- * 在使用 BAKit 的过程中如果出现 bug 请及时以以下任意一种方式联系我,我会及时修复 bug
- *
- * QQ : 可以添加ios开发技术群 479663605 在这里找到我(博爱1616【137361770】)
- * 微博 : 博爱1616
- * Email : 137361770@qq.com
- * GitHub : https://github.com/boai
- * BAHome : https://github.com/BAHome
- * 博客 : http://boaihome.com
-
- *********************************************************************************
-
- */
- #import <UIKit/UIKit.h>
- @class BAGridItemModel;
- @interface BAGridCollectionCell : UICollectionViewCell
- @property(nonatomic, strong) BAGridItemModel *model;
- @property(nonatomic, strong) UIColor *ba_gridView_titleColor;
- /**
- item:分割线颜色
- */
- @property(nonatomic, strong) UIColor *ba_gridView_lineColor;
- @property(nonatomic, assign) CGFloat ba_gridView_lineWidth;
- /**
- item:图片与文字间距
- */
- @property(nonatomic, assign) CGFloat ba_gridView_itemImageInset;
- /**
- item:title Font,默认:图文样式下 16,两行文字下(上25,下12)
- */
- @property(nonatomic, strong) UIFont *ba_gridView_titleFont;
- @end
|