LeadView.h
306 字节
//
// LeadView.h
// DreamSleep
//
// Created by peter on 2022/4/6.
//
#import <UIKit/UIKit.h>
@protocol LeadViewDelegate <NSObject>
- (void)startExplore;
@end
NS_ASSUME_NONNULL_BEGIN
@interface LeadView : UIView
@property (nonatomic, weak) id<LeadViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END