aboutsummaryrefslogtreecommitdiffstats
path: root/iPhone/FixMyStreet/Classes/AppDelegate.h
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2012-10-16 17:40:53 +0100
committerStruan Donald <struan@exo.org.uk>2012-10-17 10:34:25 +0100
commit4a3105e612c7a612725f131b6d2a9079fcc3eb0e (patch)
tree92083fe0d19a1ac88d3cad376e1b10cc7a3dff6a /iPhone/FixMyStreet/Classes/AppDelegate.h
parent6bebea876ad30acc252aca97f2f012bbef327d11 (diff)
update ios app to phonegap 2.1.0
Diffstat (limited to 'iPhone/FixMyStreet/Classes/AppDelegate.h')
-rw-r--r--iPhone/FixMyStreet/Classes/AppDelegate.h19
1 files changed, 7 insertions, 12 deletions
diff --git a/iPhone/FixMyStreet/Classes/AppDelegate.h b/iPhone/FixMyStreet/Classes/AppDelegate.h
index cee4240..5c258f1 100644
--- a/iPhone/FixMyStreet/Classes/AppDelegate.h
+++ b/iPhone/FixMyStreet/Classes/AppDelegate.h
@@ -19,32 +19,27 @@
//
// AppDelegate.h
-// cordova1.8.0
+// tmp_cordova
//
-// Created by Struan Donald on 08/06/2012.
-// Copyright __MyCompanyName__ 2012. All rights reserved.
+// Created by ___FULLUSERNAME___ on ___DATE___.
+// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
//
#import <UIKit/UIKit.h>
-#ifdef CORDOVA_FRAMEWORK
- #import <Cordova/CDVViewController.h>
-#else
- #import "CDVViewController.h"
-#endif
-
+#import <Cordova/CDVViewController.h>
@interface AppDelegate : NSObject < UIApplicationDelegate > {
}
// invoke string is passed to your app on launch, this is only valid if you
-// edit cordova1.8.0-Info.plist to add a protocol
+// edit tmp_cordova-Info.plist to add a protocol
// a simple tutorial can be found here :
// http://iphonedevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html
-@property (nonatomic, retain) IBOutlet UIWindow* window;
-@property (nonatomic, retain) IBOutlet CDVViewController* viewController;
+@property (nonatomic, strong) IBOutlet UIWindow* window;
+@property (nonatomic, strong) IBOutlet CDVViewController* viewController;
@end