From 341f5455c7db01a1b6622835a3442f170cd2ca71 Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 3 Jul 2017 10:12:06 +0800 Subject: [PATCH] Update webview 1. Embed dynamic binaries for Cordova.framework for xcode 8.3.2 2. Add step to show how to integrate plugins in xcode which used in cordova project. --- www/docs/en/dev/guide/platforms/ios/webview.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/www/docs/en/dev/guide/platforms/ios/webview.md b/www/docs/en/dev/guide/platforms/ios/webview.md index 2ba6a57258..f8be3e9d60 100644 --- a/www/docs/en/dev/guide/platforms/ios/webview.md +++ b/www/docs/en/dev/guide/platforms/ios/webview.md @@ -61,6 +61,8 @@ After using either of these two methods, continue with the **"Using CDVViewContr 1. Add `Carthage/Build/iOS/Cordova.framework` into your Xcode project. +1. Add Cordova.framework into Embedded Binaries in your Xcode General Setting page. + ## 2. Adding Cleaver to the Xcode Project (CordovaLib Sub-Project) 1. Quit Xcode if it is running. @@ -220,5 +222,16 @@ After using either of these two methods, continue with the **"Using CDVViewContr */ viewController.wwwFolderName = @"myfolder"; viewController.startPage = @"mypage.html" - ``` +    ``` +## Adding Plugins files used in you cordova project + +1. Open a terminal and navigate to within the named application's +subdirectory within `platforms/ios`. +1. Add the `Plugins` directory into the project + directory. + +1. Choose __Create groups for any added folders__ and press + __Finish__. +   +1. If plugin compile error occurred, please delete related plugins.