我正在为 iphone 做一个应用程序。我正在创建 .txt 文件并将我的信息存储在该文件中。当应用程序再次打开时,我从该文件中获取了信息。这是创建 .txt 文件的代码
NSString* filePath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString* fileName = @"user_data.txt";
NSString* fileAtPath = [filePath stringByAppendingPathComponent:fileName];
if (![[NSFileManager defaultManager] fileExistsAtPath:fileAtPath]) {
[[NSFileManager defaultManager] createFileAtPath:fileAtPath contents:nil attributes:nil];
}
在一些链接中,我发现如果我们在 DocumentDirectory 中保存任何数据,那么应用程序将被苹果拒绝,因为该数据已上传到 iCloud。所以请告诉我这是不是真的。如果是,那么我该如何存储我的文件。