aboutsummaryrefslogtreecommitdiffstats
path: root/phonegap/iPhone/FixMyStreet/Classes/AppDelegate.h
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2012-06-15 12:23:54 +0100
committerStruan Donald <struan@exo.org.uk>2012-06-15 12:23:54 +0100
commitcc1aa4a6676db38eabed168327941c6aa93b4654 (patch)
treea7848a02a53b88e89450de4fd187e7939fb61e80 /phonegap/iPhone/FixMyStreet/Classes/AppDelegate.h
parent3a25a77b31e955ae6db9f7bd22120ef421aa5d92 (diff)
parentd0c522739862671cc0ffa5cc1611d3772fe732bd (diff)
Merge branch 'phonegap'
Diffstat (limited to 'phonegap/iPhone/FixMyStreet/Classes/AppDelegate.h')
-rw-r--r--phonegap/iPhone/FixMyStreet/Classes/AppDelegate.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/phonegap/iPhone/FixMyStreet/Classes/AppDelegate.h b/phonegap/iPhone/FixMyStreet/Classes/AppDelegate.h
new file mode 100644
index 000000000..cee4240b1
--- /dev/null
+++ b/phonegap/iPhone/FixMyStreet/Classes/AppDelegate.h
@@ -0,0 +1,50 @@
+/*
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+ */
+
+//
+// AppDelegate.h
+// cordova1.8.0
+//
+// Created by Struan Donald on 08/06/2012.
+// Copyright __MyCompanyName__ 2012. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+#ifdef CORDOVA_FRAMEWORK
+ #import <Cordova/CDVViewController.h>
+#else
+ #import "CDVViewController.h"
+#endif
+
+
+@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
+// 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;
+
+@end
+