Showing
1 changed file
with
5 additions
and
5 deletions
@@ -23,7 +23,7 @@ | @@ -23,7 +23,7 @@ | ||
23 | 23 | ||
24 | - (BOOL)yhExplorer_webView:(nonnull YHExplorerViewController *)explorer shouldStartLoadWithRequest:(nullable NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType; | 24 | - (BOOL)yhExplorer_webView:(nonnull YHExplorerViewController *)explorer shouldStartLoadWithRequest:(nullable NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType; |
25 | 25 | ||
26 | -- (void)yhExplorer_webViewWebContentProcessDidTerminate:(id)webView; | 26 | +- (void)yhExplorer_webViewWebContentProcessDidTerminate:(id _Nonnull)webView; |
27 | @end | 27 | @end |
28 | 28 | ||
29 | #pragma mark - Protocol:YHExplorerDelegate | 29 | #pragma mark - Protocol:YHExplorerDelegate |
@@ -65,7 +65,7 @@ | @@ -65,7 +65,7 @@ | ||
65 | /** | 65 | /** |
66 | 当wkwebview加载 一个url 会询问客户端是否应该加载时的 回调, 当且仅当iOS11及其以上的版本才可以使用 | 66 | 当wkwebview加载 一个url 会询问客户端是否应该加载时的 回调, 当且仅当iOS11及其以上的版本才可以使用 |
67 | */ | 67 | */ |
68 | -- (void)wkwebviewDecidePolicyForNavigationActionWithUrl:(NSURL *)url API_AVAILABLE(ios(11.0)); | 68 | +- (void)wkwebviewDecidePolicyForNavigationActionWithUrl:(NSURL * _Nonnull)url API_AVAILABLE(ios(11.0)); |
69 | 69 | ||
70 | /** | 70 | /** |
71 | @brief 补充userAgent | 71 | @brief 补充userAgent |
@@ -81,7 +81,7 @@ | @@ -81,7 +81,7 @@ | ||
81 | 注:需要开启 `YHExplorerView`属性`enablePictureTapGesture` | 81 | 注:需要开启 `YHExplorerView`属性`enablePictureTapGesture` |
82 | 82 | ||
83 | @param explorer explorer对象 | 83 | @param explorer explorer对象 |
84 | - @param params 图片的一些信息 | 84 | + @param pictureInfo 图片的一些信息 |
85 | 85 | ||
86 | @since 1.1.3 | 86 | @since 1.1.3 |
87 | */ | 87 | */ |
@@ -97,7 +97,7 @@ | @@ -97,7 +97,7 @@ | ||
97 | 97 | ||
98 | @since 1.1.0 | 98 | @since 1.1.0 |
99 | */ | 99 | */ |
100 | -- (void)didGetMessageFromWeb:(NSDictionary * _Nonnull)params completion:(void (^) (id _Nullable, BOOL))completion; | 100 | +- (void)didGetMessageFromWeb:(NSDictionary * _Nonnull)params completion:(void (^_Nullable) (id _Nullable, BOOL))completion; |
101 | 101 | ||
102 | @required | 102 | @required |
103 | @end | 103 | @end |
@@ -139,7 +139,7 @@ | @@ -139,7 +139,7 @@ | ||
139 | /** | 139 | /** |
140 | * 加载URL | 140 | * 加载URL |
141 | * | 141 | * |
142 | - * @param URL | 142 | + * @param URL 地址 |
143 | */ | 143 | */ |
144 | - (void)loadURL:(NSURL * _Nonnull)URL; | 144 | - (void)loadURL:(NSURL * _Nonnull)URL; |
145 | /** | 145 | /** |
-
Please register or login to post a comment