iPhone アプリに .txt ファイルを保存したいのですが、アプリをアンインストールして再インストールしてもアクセスできるように保持したいです。
ファイルを iPhone のハードディスクに保存しようとしましたが、うまくいきません。
これはシミュレーターで機能します:
NSFileManager *filemgr;
filemgr = [NSFileManager defaultManager];
//NSString *dataFile= @"/Users/rajesh/Library/Application Support/iPhone Simulator/4.2/tmp/myfile.dat"; //on simulator
NSData *databuffer;
databuffer = [textBox.text dataUsingEncoding: NSASCIIStringEncoding];
[filemgr createFileAtPath: dataFile contents: databuffer attributes:nil];
[filemgr release];
そして、私はこれをデバイスで使用します:
NSString *dataFile= @"/var/mobile/Applications/temp/myfile.dat"; //on device
しかし、それは機能していません。