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