ToolsCollectionViewCell.h 414 B

1234567891011121314151617181920
  1. //
  2. // ToolsCollectionViewCell.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/6/1.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <QMUIButton.h>
  10. @interface ToolsCollectionViewCell : UICollectionViewCell
  11. @property (nonatomic, strong) UIImageView *toolImgView;
  12. @property (nonatomic, strong) UILabel *toolLabel;
  13. @property(nonatomic, strong) QMUIButton *toolBtn;
  14. @end