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.
32 lines
657 B
32 lines
657 B
// |
|
// HomeHeaderTableView.h |
|
// tongxin |
|
// |
|
// Created by ecell on 2023/6/20. |
|
// Copyright © 2023 xTT. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#import "XRCarouselView.h" |
|
#import "SlideshowModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface HomeHeaderTableView : UIView |
|
|
|
@property (strong, nonatomic) XRCarouselView * tempCarouselView; |
|
@property (copy, nonatomic) NSArray<SlideshowModel*>* modelArr; |
|
|
|
|
|
@property (nonatomic ,strong) UIView *bgView; |
|
|
|
/// 设置数据 |
|
/// @param imageArr 图片数组 |
|
/// @param pImage 占位符 |
|
- (void)setData:(NSArray*)modelArr WithPlaceholderImage:(NSString*)pImage; |
|
|
|
- (void)subBtnView; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|