You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2013/01/03 01:57:20 UTC

docs commit: [CB-2097] Embedded CordovaView docs - need to retain CDVViewController object

Updated Branches:
  refs/heads/master c988fa6a7 -> 8b69b7483


[CB-2097] Embedded CordovaView docs - need to retain CDVViewController object

Emphasized the retain instruction


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/8b69b748
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/8b69b748
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/8b69b748

Branch: refs/heads/master
Commit: 8b69b7483d97d8fa9424ab70446c94d68e92bef0
Parents: c988fa6
Author: Shazron Abdullah <sh...@apache.org>
Authored: Wed Jan 2 16:56:52 2013 -0800
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Wed Jan 2 16:56:52 2013 -0800

----------------------------------------------------------------------
 docs/en/edge/guide/cordova-webview/ios.md |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/8b69b748/docs/en/edge/guide/cordova-webview/ios.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/cordova-webview/ios.md b/docs/en/edge/guide/cordova-webview/ios.md
index fc3f6e9..373ec1d 100644
--- a/docs/en/edge/guide/cordova-webview/ios.md
+++ b/docs/en/edge/guide/cordova-webview/ios.md
@@ -88,7 +88,7 @@ Using CDVViewController in your code
 
         #import <Cordova/CDVViewController.h>
 
-2. Instantiate a **new** `CDVViewController`, and retain it somewhere: 
+2. Instantiate a **new** `CDVViewController`, and **retain it somewhere** (e.g. to a property in your class): 
 
         CDVViewController* viewController = [CDVViewController new];