// // FBLeftAndRightCell.h // FreedomBoat // // Created by 刘惠萍 on 2019/11/14. // Copyright © 2019 刘惠萍. All rights reserved. // #import typedef NS_ENUM(NSUInteger, ENUM_PRODUCTLISTINFOCELL_TYPE) { ENUM_PRODUCTLISTINFOCELL_NORMAL = 0, ENUM_PRODUCTLISTINFOCELL_EMPTY, ENUM_PRODUCTLISTINFOCELL_TAG, ENUM_PRODUCTLISTINFOCELL_IMAGE, ENUM_PRODUCTLISTINFOCELL_TITLE_LEFT, ENUM_PRODUCTLISTINFOCELL_PRICE, ENUM_PRODUCTLISTINFOCELL_PHONE, ENUM_PRODUCTLISTINFOCELL_WITHOUTARROW }; NS_ASSUME_NONNULL_BEGIN @interface FBLeftAndRightCell : UITableViewCell @property (strong, nonatomic) UIImageView *iconImg; @property (strong, nonatomic) UILabel *labelTitle; @property (nonatomic, strong) UILabel *labelSubTitle; @property (strong, nonatomic) UILabel *labelPrice; @property (strong, nonatomic) UIImageView *rightImg; @property (strong, nonatomic) UIView *lineView; @property (nonatomic, strong) void(^blockCellClick)(FBLeftAndRightCell *);//click @property (nonatomic, strong) ModelBaseData *model; #pragma mark 刷新cell - (void)resetCellWithModel:(ModelBaseData *)model; @end NS_ASSUME_NONNULL_END