123456789101112131415161718192021 |
- //
- // KBMorePicCollectionCell.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/4/24.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol YHMorePicCollectionCellDelegate <NSObject>
- - (void)YHMorePicCollectionCellDidSelectedItem:(NSInteger)index;
- @end
- @interface KBMorePicCollectionCell : UICollectionViewCell
- - (void)setModelDatas:(NSArray *)dataArr;
- @property (nonatomic, weak) id <YHMorePicCollectionCellDelegate> delegate;
- @end
|