123456789101112131415161718192021 |
- //
- // NSURLProtocol+WKWebView.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/4/27.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSURLProtocol (WKWebView)
- + (void)wk_registerScheme:(NSString*)scheme;
- + (void)wk_unregisterScheme:(NSString*)scheme;
- @end
- NS_ASSUME_NONNULL_END
|