// // QXSystemMessageHandleCell.h // QXLive // // Created by 启星 on 2025/11/22. // #import #import "QXMessageModel.h" NS_ASSUME_NONNULL_BEGIN @protocol QXSystemMessageHandleCellDelegate @optional -(void)handleInviteIsAgree:(BOOL)isAgree message:(QXMessageListModel*)message; @end @interface QXSystemMessageHandleCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *titleLabel; @property (weak, nonatomic) IBOutlet UIButton *cancelBtn; @property (weak, nonatomic) IBOutlet UIButton *commitBtn; @property (weak, nonatomic) IBOutlet UILabel *timeLabel; @property (weak, nonatomic) IBOutlet UIButton *stateBtn; @property (weak, nonatomic) IBOutlet UILabel *contentLabel; @property (weak, nonatomic) id delegate; @property (nonatomic,strong)QXMessageListModel *model; +(instancetype)cellWithTableView:(UITableView *)tableView; @end NS_ASSUME_NONNULL_END