BBAPopMenuItemCell.h
575 Bytes
//
// BBAPopMenuItemCellTableViewCell.h
// BBAComs
//
// Created by Wu,Huanqing on 2017/6/1.
//
//
#import <UIKit/UIKit.h>
@class BBAPopMenuItemModel;
@interface BBAPopMenuItemCell : UITableViewCell
@property (nonatomic, strong) BBAPopMenuItemModel *itemModel;
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier;
// assignThemeMode: 指定主题模式, 不指定传nil
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier assignThemeMode:(NSString *)themeMode;
@end