BBADialogTipContentView.h
662 Bytes
//
// BBADialogTipContentView.h
// BBAPods-BBAUIKit
//
// Created by hulinling on 2017/11/16.
// Copyright © 2017年 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_ENUM(NSUInteger, BBADialogTipContentClickType) {
BBADialogTipContentClickType_Close,
BBADialogTipContentClickType_ClickImage
};
@class BBADialogTipItem;
@interface BBADialogTipContentView : UIView
@property (nonatomic, copy) void(^didClickBlock)(BBADialogTipContentClickType clickType);
/// 特定主题
@property (nonatomic, readonly) NSString *specificThemeMode;
- (instancetype)initWithItem:(BBADialogTipItem *)tipItem themeMode:(NSString *)themeMode;
@end