12345678910111213141516171819202122 |
- //
- // KDPBannerCell.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/4.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <SDCycleScrollView.h>
- #import "KDPBannerModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPBannerCell : UICollectionViewCell<SDCycleScrollViewDelegate>
- @property(nonatomic,strong)SDCycleScrollView *sdCycleView;
- @property(nonatomic,strong)NSArray *bannerArr;
- @property(nonatomic,copy)void(^bannerBlock)(KDPBannerModel *model);
- @end
- NS_ASSUME_NONNULL_END
|