BAGridCollectionCell.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*!
  2. * @header BAKit.h
  3. *
  4. * @brief BAKit
  5. *
  6. * @author 博爱
  7. * @copyright Copyright © 2016年 博爱. All rights reserved.
  8. * @version V1.0
  9. */
  10. // _ooOoo_
  11. // o8888888o
  12. // 88" . "88
  13. // (| -_- |)
  14. // O\ = /O
  15. // ____/`---'\____
  16. // . ' \\| |// `.
  17. // / \\||| : |||// \
  18. // / _||||| -:- |||||- \
  19. // | | \\\ - /// | |
  20. // | \_| ''\---/'' | |
  21. // \ .-\__ `-` ___/-. /
  22. // ___`. .' /--.--\ `. . __
  23. // ."" '< `.___\_<|>_/___.' >'"".
  24. // | | : `- \`.;`\ _ /`;.`/ - ` : | |
  25. // \ \ `-. \_ __\ /__ _/ .-` / /
  26. // ======`-.____`-.___\_____/___.-`____.-'======
  27. // `=---='
  28. //
  29. // .............................................
  30. // 佛祖镇楼 BUG辟易
  31. // 佛曰:
  32. // 写字楼里写字间,写字间里程序员;
  33. // 程序人员写程序,又拿程序换酒钱。
  34. // 酒醒只在网上坐,酒醉还来网下眠;
  35. // 酒醉酒醒日复日,网上网下年复年。
  36. // 但愿老死电脑间,不愿鞠躬老板前;
  37. // 奔驰宝马贵者趣,公交自行程序员。
  38. // 别人笑我忒疯癫,我笑自己命太贱;
  39. // 不见满街漂亮妹,哪个归得程序员?
  40. /*
  41. *********************************************************************************
  42. *
  43. * 在使用 BAKit 的过程中如果出现 bug 请及时以以下任意一种方式联系我,我会及时修复 bug
  44. *
  45. * QQ : 可以添加ios开发技术群 479663605 在这里找到我(博爱1616【137361770】)
  46. * 微博 : 博爱1616
  47. * Email : 137361770@qq.com
  48. * GitHub : https://github.com/boai
  49. * BAHome : https://github.com/BAHome
  50. * 博客 : http://boaihome.com
  51. *********************************************************************************
  52. */
  53. #import <UIKit/UIKit.h>
  54. @class BAGridItemModel;
  55. @interface BAGridCollectionCell : UICollectionViewCell
  56. @property(nonatomic, strong) BAGridItemModel *model;
  57. @property(nonatomic, strong) UIColor *ba_gridView_titleColor;
  58. /**
  59. item:分割线颜色
  60. */
  61. @property(nonatomic, strong) UIColor *ba_gridView_lineColor;
  62. @property(nonatomic, assign) CGFloat ba_gridView_lineWidth;
  63. /**
  64. item:图片与文字间距
  65. */
  66. @property(nonatomic, assign) CGFloat ba_gridView_itemImageInset;
  67. /**
  68. item:title Font,默认:图文样式下 16,两行文字下(上25,下12)
  69. */
  70. @property(nonatomic, strong) UIFont *ba_gridView_titleFont;
  71. @end