| 123456789101112131415161718192021 |
- //
- // DJWeakScriptMessageDelegate.h
- // DailyESports
- //
- // Created by 曹福涛 on 2019/3/14.
- // Copyright © 2019 com.cmel365. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <WebKit/WebKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface DJWeakScriptMessageDelegate : NSObject<WKScriptMessageHandler>
- @property (nonatomic,weak)id<WKScriptMessageHandler> scriptDelegate;
- - (instancetype)initWithDelegate:(id<WKScriptMessageHandler>)scriptDelegate;
- @end
- NS_ASSUME_NONNULL_END
|