| 1234567891011121314151617 |
- //
- // CGPTCollectionViewCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/1/20.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CGPTCollectionViewCell : UICollectionViewCell
- @property(nonatomic,copy)UIImageView *incoImage;
- /** 删除按钮 */
- @property (nonatomic, strong) UIButton *deleteButton;
- -(void)SetCollCellData:(NSString *)indexpath;
- @end
|