// // CGPTCell.h // jitao // // Created by 罗云飞 on 2018/1/20. // Copyright © 2018年 罗云飞. All rights reserved. // #import /** * 代理,用来传递点击的是第几行,当触CollectionView的时候 */ @protocol CGPTColldelegate -(void)CGPTColldelegateClickCooRow:(NSInteger)CellRow; -(void)hahahaha:(NSInteger)tag; @end @interface CGPTCell : UITableViewCell @property (weak, nonatomic)UICollectionView *CollView; @property (weak, nonatomic) id delegateColl; - (void)reloadDatas:(NSMutableArray *)arr; @end