123456789101112131415161718192021222324252627 |
- //
- // KSNewsAlert.h
- // StudentDaya
- //
- // Created by Kyle on 2020/2/26.
- // Copyright © 2020 DayaMusic. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^NewsCallback)(BOOL isSure, NSString *linkUrl);
- @interface KSNewsAlert : UIView
- + (instancetype)shareInstance;
- - (void)evaluateWithMessage:(NSString *)imgUrl linkUrl:(NSString *)linkUrl callbackAction:(NewsCallback)callback;
- - (void)showAlert;
- - (void)hiddenAction;
- @end
- NS_ASSUME_NONNULL_END
|