2
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
UINavigationController *navigationController = [splitViewController.viewControllers lastObject];
splitViewController.delegate = (id)navigationController.topViewController;
}


NSString *dbFilename = @"CoordinatesDatabase.sql";
NSString *userPath = [[CoordinatesAppDelegate applicationDocumentsDirectory] stringByAppendingPathComponent: dbFilename];
NSString *srcPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent: dbFilename];
NSLog(@"userPath %@", userPath);
NSLog(@"srcPath %@", srcPath);
NSFileManager *fileManager = [NSFileManager defaultManager];

BOOL foundInBundle = [fileManager fileExistsAtPath: srcPath];
BOOL foundInUserPath = [fileManager fileExistsAtPath: userPath];
BOOL copySuccess = FALSE;

NSError *error;

if(foundInBundle)
{
    if(!foundInUserPath)
    {
        NSLog(@"don't have copy, copy one");
        copySuccess = [fileManager copyItemAtPath: srcPath toPath: userPath error: &error];
    }
    if(!copySuccess)
    {
        NSLog(@"Failed with message: %@'.", [error localizedDescription]);
    }
}
else
{
    NSLog(@"Some error");
}
return YES;
}

根据foundInBundle,CoordinatesDatabase.sql 存在于应用程序包中。为什么不能出现“copySuccess = [fileManager copyItemAtPath: srcPath toPath: userPath error: &error];” 成功的?

它产生的错误类似于“无法完成操作。可可错误 4”。根据我的谷歌搜索,Cocoa Code Error 4 表示 NSFileNoSuchFileError 但我很确定 CoordinatesDatabase.sql 存在于应用程序包中。

或者我错了 CoordintesDatabase.sql 确实存在于应用程序包中?

4

1 回答 1

0

您无法创建、删除或更改应用程序包中的文件。您必须将文件写入正确的文档或缓存文件夹。这也有点复杂,因为 iOS4 和 iOS5 之间的规则发生了变化。

此外,您的应用程序可能会因在错误的文件夹中创建文件而被拒绝。我最终编写了一种方法来根据他们正在运行的操作系统版本来处理文档文件夹的创建......并且当用户升级手机中的操作系统时,它支持将数据从旧文件夹迁移到新文件夹。你也应该这样做。

我建议你看看这里处理这个问题的其他问题:iOS PhoneGap app denied because of the use of localStorage

于 2012-10-10T15:44:53.273 回答