GoodSleepHeadView.h
470 字节
//
// GoodSleepHeadView.h
// DreamSleep
//
// Created by peter on 2022/6/29.
//
#import <UIKit/UIKit.h>
#import "NoiseTypeModel.h"
NS_ASSUME_NONNULL_BEGIN
@protocol GoodSleepHeadViewDelegate <NSObject>
- (void)closeAction;
@end
/// 好眠声音头部
@interface GoodSleepHeadView : UIView
@property (nonatomic, weak) id<GoodSleepHeadViewDelegate> delegate;
- (instancetype)initWithFrame:(CGRect)frame headType:(GSHeadType)headType;
@end
NS_ASSUME_NONNULL_END