// // AppDelegate.h // DerbyApp // // Created by Adam Ryder on 1/8/12. // Copyright __MyCompanyName__ 2012. All rights reserved. // #import #ifdef PHONEGAP_FRAMEWORK #import #else #import "PhoneGapDelegate.h" #endif @interface AppDelegate : PhoneGapDelegate { NSString* invokeString; } // invoke string is passed to your app on launch, this is only valid if you // edit DerbyApp.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 (copy) NSString* invokeString; @end