Files
midi_ios/QXLive/Message(音信)/View/QXSystemNoticeCell.h

23 lines
534 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// QXSystemNoticeCell.h
// QXLive
//
// Created by 启星 on 2025/5/28.
//
#import <UIKit/UIKit.h>
#import "QXMessageModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface QXSystemNoticeCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
@property (weak, nonatomic) IBOutlet UIImageView *noticeImageView;
@property (weak, nonatomic) IBOutlet UILabel *contentLabel;
@property (nonatomic,strong)QXMessageListModel *model;
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END