12345678910111213141516171819202122232425262728293031 |
- //
- // KDPSupplyCommentViewCell.h
- // KuDianProject
- //
- // Created by admin on 2019/7/4.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol KDPSupplyCommentViewCellDelegate<NSObject>
- @required
- - (void)commentCollectionView:(UICollectionView *)collectionView didSelectIndex:(NSInteger )index;
- @end
- @interface KDPSupplyCommentViewCell : UICollectionViewCell
- @property (nonatomic, strong) NSArray *dataArray;
- @property (nonatomic, weak) id <KDPSupplyCommentViewCellDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
- @interface KDPSupplyCommentContentCell : UICollectionViewCell
- @end
|