hedgewars/getdocumentpath.m
changeset 2630 079ef82eac75
child 2671 7e0f88013fe8
equal deleted inserted replaced
2629:be70fd3458c0 2630:079ef82eac75
       
     1 #import <UIKit/UIKit.h>
       
     2 
       
     3 const char* get_documents_path() {
       
     4     NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
       
     5     NSString *documentsDirectory = [paths objectAtIndex: 0];
       
     6     const char* path = [documentsDirectory UTF8String];
       
     7     return path;
       
     8 }