29 lines
715 B
Objective-C
29 lines
715 B
Objective-C
//
|
|
// 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 (weak, nonatomic) IBOutlet UIButton *pvLab;
|
|
|
|
@property (nonatomic, strong) PushRecordList *list;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|