28 lines
678 B
C
28 lines
678 B
C
|
|
//
|
||
|
|
// THBottleInfoCardContentView.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by iOS on 2023/2/9.
|
||
|
|
// Copyright © 2023 CYH. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "THView.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface THBottleInfoCardContentView : THView
|
||
|
|
|
||
|
|
@property(nonatomic, assign)THBottleType bottleType;
|
||
|
|
@property(nonatomic, copy)NSString *contentText;
|
||
|
|
@property(nonatomic, strong)NSArray *imgs;
|
||
|
|
@property(nonatomic, strong)NSString *voiceUrl;
|
||
|
|
///图片是否可见: 是否已交换?/是否需要模糊
|
||
|
|
@property(nonatomic, assign)BOOL imgIsSee;
|
||
|
|
|
||
|
|
///图片点击
|
||
|
|
@property (nonatomic, copy) void(^imgItemDidTap)(THBottleInfoCardContentView *view, NSInteger itemIndex);
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|