BBABBACommonPopupMenuListViewTableViewCell.h
989 Bytes
//
// BBABBACommonPopupMenuListViewTableViewCell.h
// BBAUIKit
//
// Created by Ning,Liujie on 2020/7/15.
// Copyright © 2020 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "BBACommonPopupMenuItem.h"
typedef NS_ENUM(NSInteger, BBACommonPopupMenuItemType) {
BBACommonPopupMenuItemTypeText, // 文本
BBACommonPopupMenuItemTypeImageText, // 图片 + 文本
BBACommonPopupMenuItemTypeTextCustomview, // 文字 + 自定义
BBACommonPopupMenuItemTypeImageTextCustomview // 图片 + 文字 + 自定义
};
NS_ASSUME_NONNULL_BEGIN
@interface BBABBACommonPopupMenuListViewTableViewCell : UITableViewCell
/// 要展示的菜单类型
@property (nonatomic, assign) BBACommonPopupMenuItemType munuItemType;
/// 最大的文本宽度
@property (nonatomic, assign) CGFloat maxTextWidth;
/// 更新展示的数据
- (void)updatePopupMenuListViewTableViewCell:(BBACommonPopupMenuItem *)item;
@end
NS_ASSUME_NONNULL_END