TZTestCell.h 545 B

123456789101112131415161718192021222324
  1. //
  2. // TZTestCell.h
  3. // TZImagePickerController
  4. //
  5. // Created by 谭真 on 16/1/3.
  6. // Copyright © 2016年 谭真. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TZTestCell : UICollectionViewCell
  10. @property (nonatomic, strong) UIImageView *imageView;
  11. @property (nonatomic, strong) UIImageView *videoImageView;
  12. @property (nonatomic, strong) UIButton *deleteBtn;
  13. @property (nonatomic, strong) UILabel *gifLable;
  14. @property (nonatomic, assign) NSInteger row;
  15. @property (nonatomic, strong) id asset;
  16. - (UIView *)snapshotView;
  17. @end