// // DetailBasicCell0.h // iShop // // Created by Rui Zhang on 1/12/24. // #import #import "RTLabel.h" NS_ASSUME_NONNULL_BEGIN @class DetailBasicCell0; @protocol DetailBasicCell0Delegate @required - (void) SelectorClicked:(UIView*) trigger; @end @interface DetailBasicCell0 : UITableViewCell { @private id __weak celldelegate; } @property (weak, nonatomic) id celldelegate; @property (weak, nonatomic) IBOutlet RTLabel *descriptionRTLabel; @property (weak, nonatomic) IBOutlet UIButton *btnSelector; @property (weak, nonatomic) IBOutlet UIImageView *imageviewSelector; @property (weak, nonatomic) IBOutlet UILabel *labelSelector; @property (weak, nonatomic) IBOutlet UILabel *labelProperty; @property (weak, nonatomic) IBOutlet UILabel *labelPropertyVal; @property (weak, nonatomic) IBOutlet UILabel *labelModel; @property (weak, nonatomic) IBOutlet UIButton *btnAddList; @property (nonatomic,copy) void(^WatchlistBlock)(void); @end NS_ASSUME_NONNULL_END