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 2012/04/06 08:42:18 UTC

ios commit: Re-fix CB-444 - Xcode template new project - AppDelegate's self.invokeString usage was removed

Updated Branches:
  refs/heads/master 73e8ccf75 -> 768a04146


Re-fix CB-444 - Xcode template new project - AppDelegate's self.invokeString usage was removed


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/768a0414
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/768a0414
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/768a0414

Branch: refs/heads/master
Commit: 768a04146287392dc212522e27e054df786f5f2f
Parents: 73e8ccf
Author: Shazron Abdullah <sh...@apache.org>
Authored: Thu Apr 5 23:42:00 2012 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Thu Apr 5 23:42:00 2012 -0700

----------------------------------------------------------------------
 CordovaLib/Classes/CDVViewController.h |    1 +
 CordovaLib/Classes/CDVViewController.m |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/768a0414/CordovaLib/Classes/CDVViewController.h
----------------------------------------------------------------------
diff --git a/CordovaLib/Classes/CDVViewController.h b/CordovaLib/Classes/CDVViewController.h
index 83f20bc..155be8c 100644
--- a/CordovaLib/Classes/CDVViewController.h
+++ b/CordovaLib/Classes/CDVViewController.h
@@ -37,6 +37,7 @@
 @property (nonatomic, readonly, retain) CDVWhitelist* whitelist; // readonly for public
 @property (nonatomic, readonly, retain) NSArray* supportedOrientations;
 @property (nonatomic, readonly, assign) BOOL loadFromString;
+@property (nonatomic, readwrite, copy) NSString* invokeString;
 
 @property (nonatomic, readwrite, assign) BOOL useSplashScreen;
 @property (nonatomic, readonly, retain) IBOutlet UIActivityIndicatorView* activityView;

http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/768a0414/CordovaLib/Classes/CDVViewController.m
----------------------------------------------------------------------
diff --git a/CordovaLib/Classes/CDVViewController.m b/CordovaLib/Classes/CDVViewController.m
index ee2f4c7..4865967 100644
--- a/CordovaLib/Classes/CDVViewController.m
+++ b/CordovaLib/Classes/CDVViewController.m
@@ -44,7 +44,7 @@
 @synthesize pluginObjects, pluginsMap, whitelist;
 @synthesize settings, loadFromString;
 @synthesize imageView, activityView, useSplashScreen, commandDelegate;
-@synthesize wwwFolderName, startPage;
+@synthesize wwwFolderName, startPage, invokeString;
 
 - (id) init
 {