CGPTCollectionViewCell.h 401 B

1234567891011121314151617
  1. //
  2. // CGPTCollectionViewCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2018/1/20.
  6. // Copyright © 2018年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CGPTCollectionViewCell : UICollectionViewCell
  10. @property(nonatomic,copy)UIImageView *incoImage;
  11. /** 删除按钮 */
  12. @property (nonatomic, strong) UIButton *deleteButton;
  13. -(void)SetCollCellData:(NSString *)indexpath;
  14. @end