XG_AssetCell.h 540 B

123456789101112131415161718192021
  1. //
  2. // XG_AssetCell.h
  3. // MyApp
  4. //
  5. // Created by huxinguang on 2018/9/26.
  6. // Copyright © 2018年 huxinguang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class XG_AssetModel;
  10. @interface XG_AssetCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imageView;
  12. @property (weak, nonatomic) IBOutlet UIButton *selectPhotoButton;
  13. @property (weak, nonatomic) IBOutlet UILabel *numberLabel;
  14. @property (nonatomic, strong) XG_AssetModel *model;
  15. @property (nonatomic, copy) void (^didSelectPhotoBlock)(BOOL);
  16. @end