some changes
[wl-mobile.git] / Classes / AppDelegate.h
1 //
2 //  AppDelegate.h
3 //  wl-mobi
4 //
5 //  Created by FNP on 10/19/11.
6 //  Copyright __MyCompanyName__ 2011. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10 #ifdef PHONEGAP_FRAMEWORK
11         #import <PhoneGap/PhoneGapDelegate.h>
12 #else
13         #import "PhoneGapDelegate.h"
14 #endif
15
16 @interface AppDelegate : PhoneGapDelegate {
17
18         NSString* invokeString;
19 }
20
21 // invoke string is passed to your app on launch, this is only valid if you 
22 // edit wl-mobi.plist to add a protocol
23 // a simple tutorial can be found here : 
24 // http://iphonedevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html
25
26 @property (copy)  NSString* invokeString;
27
28 @end
29