InformCancelAlertView.h 513 字节
//
//  InformCancelAlertView.h
//  DreamSleep
//
//  Created by peter on 2022/9/29.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@protocol InformCancelAlertViewDelegate <NSObject>
/// 点击举报按钮回调
- (void)tapInformBtn;
@end

/// 举报、取消弹框
@interface InformCancelAlertView : UIView

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

- (instancetype)initWithDelegate:(id<InformCancelAlertViewDelegate>)delegate;

- (void)display;

@end

NS_ASSUME_NONNULL_END