// // DetailTopicCellTableViewCell.h // iShop // // Created by Rui Zhang on 2/26/24. // #import @class DetailTopicCell; @protocol DetailRelatedCellDelegate @required - (void) TopicItemClicked:(NSString*) product_id category:(NSString*) category; //- (void) LongPress:(UIView*)view row:(int) x column:(int) y; //- (void) LongPress:(UIView*)view row:(int) x; //- (void) Tap:(UIView*)view row:(int) x column:(int) y; //- (void) Tap:(UIView*)view row:(int) x; @end @interface DetailTopicCell : UITableViewCell { @private // id __unsafe_unretained _dataSource; id __weak itemdelegate; } @property (strong, nonatomic) IBOutlet UICollectionView *topicCollectionView; @property (weak, nonatomic) id itemdelegate; @property (strong, nonatomic) NSDictionary* related_data; -(void) begin_refresh; -(void) end_refresh; @property (strong, nonatomic) IBOutlet UILabel *refreshLabel; @end