You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ac...@apache.org on 2017/08/17 02:18:10 UTC

[4/7] incubator-weex git commit: * [ios] update fix note

* [ios] update fix note


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/187f9919
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/187f9919
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/187f9919

Branch: refs/heads/0.16-dev
Commit: 187f9919372c4bcd1fa396f91cbb21fb2584acf1
Parents: 72f9dc4
Author: acton393 <zh...@gmail.com>
Authored: Wed Aug 16 12:13:55 2017 +0800
Committer: acton393 <zh...@gmail.com>
Committed: Wed Aug 16 12:13:55 2017 +0800

----------------------------------------------------------------------
 ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/187f9919/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m
----------------------------------------------------------------------
diff --git a/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m b/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m
index 2c75adf..9302760 100644
--- a/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m
+++ b/ios/sdk/WeexSDK/Sources/Model/WXSDKInstance.m
@@ -179,7 +179,7 @@ typedef enum : NSUInteger {
         id<WXJSExceptionProtocol> jsExceptionHandler = [WXHandlerFactory handlerForProtocol:@protocol(WXJSExceptionProtocol)];
         if ([jsExceptionHandler respondsToSelector:@selector(onJSException:)]) {
             WXRuntimeCheckException * runtimeCheckException = [WXRuntimeCheckException new];
-            runtimeCheckException.exception = @"We highly recommend you to set pageName.\n call WXSDKInstance * instance = [WXSDKInstance new]; instance.page = @\"your page name\" to fix it";
+            runtimeCheckException.exception = @"We highly recommend you to set pageName.\n Using WXSDKInstance * instance = [WXSDKInstance new]; instance.pageName = @\"your page name\" to fix it";
             [jsExceptionHandler onRuntimeCheckException:runtimeCheckException];
         }
     }