You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
607 B
28 lines
607 B
1 year ago
|
//
|
||
|
// CarouselViewCell.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by Apple on 2020/4/8.
|
||
|
// Copyright © 2020 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "XRCarouselView.h"
|
||
|
#import "SlideshowModel.h"
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface CarouselViewCell : UITableViewCell
|
||
|
|
||
|
@property (strong, nonatomic) XRCarouselView * tempCarouselView;
|
||
|
@property (copy, nonatomic) NSArray<SlideshowModel*>* modelArr;
|
||
|
|
||
|
/// 设置数据
|
||
|
/// @param imageArr 图片数组
|
||
|
/// @param pImage 占位符
|
||
|
- (void)setData:(NSArray<SlideshowModel*>*)modelArr WithPlaceholderImage:(NSString*)pImage;
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|