This commit is contained in:
Yao
2025-01-11 14:58:16 +08:00
parent f82486e8b0
commit 1095c32599
262 changed files with 62730 additions and 36131 deletions

View File

@@ -0,0 +1,27 @@
//
// NotiCenterTableViewCell.h
// ShenQi
//
// Created by twotutoo on 2025/1/11.
//
#import <UIKit/UIKit.h>
#import "PushRecordList.h"
NS_ASSUME_NONNULL_BEGIN
@interface NotiCenterTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIView *mainView;
@property (weak, nonatomic) IBOutlet UILabel *typeLabel;
@property (weak, nonatomic) IBOutlet UILabel *dateLabel;
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
@property (weak, nonatomic) IBOutlet UIButton *arrowBtn;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *widthConstraint;
@property (nonatomic, strong) PushRecordList *list;
@end
NS_ASSUME_NONNULL_END