所以我想知道的是如何在应用程序第一次运行时将plist从bundle移动到documents文件夹,因为我需要它。请我找不到怎么做,所以帮助我。
答案 0 :(得分:4)
如果你的名字是“朋友”
只需使用以下代码(它将查找文件是否存在并复制)
NSFileManager *fileManger=[NSFileManager defaultManager];
NSError *error;
NSArray *pathsArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
NSString *doumentDirectoryPath=[pathsArray objectAtIndex:0];
NSString *destinationPath= [doumentDirectoryPath stringByAppendingPathComponent:@"friends.plist"];
NSLog(@"plist path %@",destinationPath);
if ([fileManger fileExistsAtPath:destinationPath]){
//NSLog(@"database localtion %@",destinationPath);
return;
}
NSString *sourcePath=[[[NSBundle mainBundle] resourcePath]stringByAppendingPathComponent:@"friends.plist:];
[fileManger copyItemAtPath:sourcePath toPath:destinationPath error:&error];
将plist从资源复制到文档目录
答案 1 :(得分:2)
这个功能应该可以解决问题。
- (void)copyPlist {
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"myplist" ofType:@"plist"];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
[[NSFileManager defaultManager] copyItemAtPath:plistPath toPath:documentsDirectory error:nil];
}
您不需要在[[NSFileManager defaultManager] copyItemAtPath:plistPath toPath:documentsDirectory error:nil];
行中使用NSError参数,但它可能对调试很有用。
答案 2 :(得分:0)
只是抬头......这来自http://samsoff.es/posts/iphone-plist-tutorial"由于JSON解析器在速度方面取得了很大进展,因此使用JSON比Plists更受欢迎。它们实际上比二进制plist更快(这是坚果)。无论如何,请,请不要使用plist作为您的API。生成它们是缓慢且不可靠的。你应该使用JSON。 。期间"