12345678910111213141516171819202122 |
- //
- // NoWiredTipsAlert.h
- // StudentDaya
- //
- // Created by Kyle on 2021/12/12.
- // Copyright © 2021 DayaMusic. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^CheckWiredCallback)(void);
- @interface NoWiredTipsAlert : UIView
- + (instancetype)shareInstance;
- - (void)showAlertInView:(UIView *)displayView callback:(CheckWiredCallback)callback;
- @end
- NS_ASSUME_NONNULL_END
|