cdts/xdts-ios 3/TreeHole/CYHResetCode/Home(首页)/View/THBottleInfoCardContentView.h

28 lines
678 B
C
Raw Permalink Normal View History

2023-07-27 09:20:00 +08:00
//
// 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