21 lines
521 B
Objective-C
21 lines
521 B
Objective-C
//
|
|
// QXCornRecordCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/5/27.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXCoinDetailModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXCornRecordCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *reasonLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *priceLabel;
|
|
@property (nonatomic,strong) QXCoinDetailModel *model;
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|