提交
This commit is contained in:
32
QXLive/Message(音信)/View/QXSystemMessageHandleCell.h
Normal file
32
QXLive/Message(音信)/View/QXSystemMessageHandleCell.h
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user