23 lines
583 B
Objective-C
23 lines
583 B
Objective-C
//
|
|
// QXDayTaskCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/5/26.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXDayTaskModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXDayTaskCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *subTitleLabel;
|
|
@property (weak, nonatomic) IBOutlet UIButton *finishBtn;
|
|
|
|
@property (strong, nonatomic) QXDayTaskListModel *model;
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|