KSNewsAlert.h 495 B

123456789101112131415161718192021222324252627
  1. //
  2. // KSNewsAlert.h
  3. // StudentDaya
  4. //
  5. // Created by Kyle on 2020/2/26.
  6. // Copyright © 2020 DayaMusic. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^NewsCallback)(BOOL isSure, NSString *linkUrl);
  11. @interface KSNewsAlert : UIView
  12. + (instancetype)shareInstance;
  13. - (void)evaluateWithMessage:(NSString *)imgUrl linkUrl:(NSString *)linkUrl callbackAction:(NewsCallback)callback;
  14. - (void)showAlert;
  15. - (void)hiddenAction;
  16. @end
  17. NS_ASSUME_NONNULL_END