Files
featherVoice/QXLive/Message(音信)/View/QXSystemMessageHandleCell.h

33 lines
940 B
C
Raw Normal View History

2025-11-28 22:43:06 +08:00
//
// QXSystemMessageHandleCell.h
// QXLive
//
// Created by 启星 on 2025/11/22.
//
#import <UIKit/UIKit.h>
#import "QXMessageModel.h"
NS_ASSUME_NONNULL_BEGIN
@protocol QXSystemMessageHandleCellDelegate <NSObject>
@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<QXSystemMessageHandleCellDelegate> delegate;
@property (nonatomic,strong)QXMessageListModel *model;
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END