Xcode でアプリを作成し、アプリを開いて表示するためのテキスト ファイルを追加しました。
このテキスト ファイルをテスト用に iPad サンドボックス ドキュメント ディレクトリに入れるにはどうすればよいですか?
Xcode でアプリを作成し、アプリを開いて表示するためのテキスト ファイルを追加しました。
このテキスト ファイルをテスト用に iPad サンドボックス ドキュメント ディレクトリに入れるにはどうすればよいですか?
あなたがする必要があるいくつかのことがあります:
これを試して:
// Documents path
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];
// Destination path
NSString *fileInDocumentsPath = [documentsPath stringByAppendingPathComponent:@"name-of-your-file.txt"];
// Origin path
NSString *fileInBundlePath = [[NSBundle mainBundle] pathForResource:@"name-of-your-file" ofType:@"txt"];
// File manager for copying
NSError *error = nil;
NSFileManager *fileManager = [NSFileManager defaultManager];
[fileManager copyItemAtPath:fileInBundlePath toPath:fileInDocumentsPath error:&error];