TextCell.h 324 B

123456789101112131415
  1. //
  2. // TextCell.h
  3. // BeautyDemo
  4. //
  5. // Created by kennethmiao on 17/5/9.
  6. // Copyright © 2017年 kennethmiao. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TextCell : UICollectionViewCell
  10. @property (nonatomic, strong) UILabel *label;
  11. - (void)setSelected:(BOOL)selected;
  12. + (NSString *)reuseIdentifier;
  13. @end