1234567891011121314151617181920 |
- //
- // KBMorePicCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/18.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol YHMorePicCellDelegate <NSObject>
- - (void)YHMorePicCellDidSelectedItem:(NSInteger)index;
- @end
- @interface KBMorePicCell : UICollectionViewCell
- - (void)setModelDatas:(NSArray *)dataArr;
- @property (nonatomic, weak) id <YHMorePicCellDelegate> delegate;
- @end
|