hedgewars/getdocumentpath.m
author koda
Wed, 25 Nov 2009 04:27:53 +0000
changeset 2641 b08cafb86797
parent 2630 079ef82eac75
child 2671 7e0f88013fe8
permissions -rw-r--r--
some tweaks in the mac compilation system

#import <UIKit/UIKit.h>

const char* get_documents_path() {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex: 0];
    const char* path = [documentsDirectory UTF8String];
    return path;
}