source: extensions/piwigo_mobile/ios/Piwigo/Classes/AppDelegate.h @ 12411

Last change on this file since 12411 was 12411, checked in by patdenice, 12 years ago

Add piwigo mobile for iOS

File size: 656 bytes
Line 
1//
2//  AppDelegate.h
3//  Piwigo
4//
5//  Created by Patrice Gauchon on 01/10/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 Piwigo.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
Note: See TracBrowser for help on using the repository browser.