33 lines
940 B
Objective-C
33 lines
940 B
Objective-C
//
|
|
// 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
|