ReadyItemCell.h
556 字节
//
// ReadyItemCell.h
// DreamSleep
//
// Created by peter on 2022/7/14.
//
#import <UIKit/UIKit.h>
#import "ReadyItem.h"
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSInteger, ItemCellType) {
ItemCellTypeStart, // 开始仪式itemcell
ItemCellTypeAdjust, // 设置睡前准备itemcell
};
/// 睡前安排列表顶部勾选任务cell
@interface ReadyItemCell : UIView
@property (nonatomic, strong) ReadyItem *item;
- (instancetype)initWithFrame:(CGRect)frame itemCellType:(ItemCellType)type;
- (void)adjustTime;
@end
NS_ASSUME_NONNULL_END