Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
JarvanMo committed Jun 27, 2019
1 parent 07794f1 commit 77b7d76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions doc/QUESTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ the following code in your `AppDelegate`:
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
return [WXApi handleOpenURL:url delegate:[FluwxResponseHandler defaultManager]];
}
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
{
return [WXApi handleOpenURL:url delegate:[FluwxResponseHandler defaultManager]];
}
Expand All @@ -44,10 +44,10 @@ If you have to override these two functions,make sure you have called the `super

return [super application:application openURL:url sourceApplication:sourceApplication annotation:annotation];
}
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
{

return [super application:app openURL:url options:options];
return [super application:application openURL:url options:options];
}
```

Expand Down
2 changes: 1 addition & 1 deletion doc/QUESTIONS_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ iOS 9系统策略更新,限制了http协议的访问,此外应用需要在
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
{

return [super application:app openURL:url options:options];
return [super application:application openURL:url options:options];
}
```

Expand Down

0 comments on commit 77b7d76

Please sign in to comment.