BBABottomActionSheetItem+BBAPrivate.h 742 Bytes
//
//  BBABottomActionSheetItem+BBAPrivate.h
//  BBAUIKit
//
//  Created by Ning,Liujie on 2020/7/25.
//  Copyright © 2020 Baidu. All rights reserved.
//


#import <BBAUIKit/BBAUIKit.h>
#import "BBABottomActionSheetItem.h"

NS_ASSUME_NONNULL_BEGIN

typedef NS_ENUM(NSInteger, BBABottomActionSheetItemType) {
    BBABottomActionSheetItemTypeText,        // 文本
    BBABottomActionSheetItemTypeHead,        // 头部标题
    BBABottomActionSheetItemTypeCustom,      // 自定义标题
};

@interface BBABottomActionSheetBaseItem (BBAPrivate)

/// 显示的内容类型
@property (nonatomic, assign) BBABottomActionSheetItemType itemType;
/// 是否显示分割线
@property (nonatomic, assign) BOOL showLine;

@end

NS_ASSUME_NONNULL_END