MoreToolsCell.h 401 B

12345678910111213141516171819
  1. //
  2. // MoreToolsCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/4/5.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class ToolsModel;
  10. @interface MoreToolsCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *toolsImageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *toolsLabel;
  13. @property (nonatomic, strong) ToolsModel * model;
  14. @end