NoWiredTipsAlert.h 413 B

12345678910111213141516171819202122
  1. //
  2. // NoWiredTipsAlert.h
  3. // StudentDaya
  4. //
  5. // Created by Kyle on 2021/12/12.
  6. // Copyright © 2021 DayaMusic. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^CheckWiredCallback)(void);
  11. @interface NoWiredTipsAlert : UIView
  12. + (instancetype)shareInstance;
  13. - (void)showAlertInView:(UIView *)displayView callback:(CheckWiredCallback)callback;
  14. @end
  15. NS_ASSUME_NONNULL_END