This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/iOS/offlineguides/AppDelegate.h
2013-10-08 10:59:52 +03:00

11 lines
249 B
Objective-C

#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow * window;
//returns data
-(NSString *)getDataFolderName;
//returns /data/
-(NSString *)getDataFolderNameWithSlashes;
@end