ReadyListController.h 597 字节
//
//  ReadyListController.h
//  DreamSleep
//
//  Created by peter on 2022/7/11.
//

#import "DSNaviBarViewController.h"

NS_ASSUME_NONNULL_BEGIN
@protocol ReadyListControllerDelegate <NSObject>
/// 将调整好的睡前准备项传递到上一个页面
/// @param items items
- (void)passAdjustedReadyItems:(NSArray *)items;
@end

/// 睡前准备设置列表页
@interface ReadyListController : DSNaviBarViewController
@property (nonatomic, weak) id<ReadyListControllerDelegate> delegate;

- (instancetype)initWithDelegate:(id<ReadyListControllerDelegate>)delegate;
@end

NS_ASSUME_NONNULL_END