hedgewars/getdocumentpath.m
author koda
Fri, 08 Jan 2010 03:38:01 +0000
changeset 2687 28b8330b8af1
parent 2671 7e0f88013fe8
permissions -rw-r--r--
add stub files for other views and prevent useless crashes also changed the tabBar icons

#import <UIKit/UIKit.h>

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