ReadyItemView.h 561 字节
//
//  ReadyItemView.h
//  DreamSleep
//
//  Created by peter on 2022/7/13.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@protocol ReadyItemViewDelegate <NSObject>
/// 更新导航栏title
/// @param itemName 当前任务项名称
- (void)curItemName:(NSString *)itemName;
@end

/// 睡前准备任务视图
@interface ReadyItemView : UIView

@property (nonatomic, weak) id<ReadyItemViewDelegate> delegate;

/// 点击开始仪式进入任务页面
/// @param items 所有任务项
- (void)startWithItems:(NSArray *)items;

@end

NS_ASSUME_NONNULL_END