addSkipBackupAttributeToItemAtURL不适用于iOS7

时间:2014-01-16 07:06:48

标签: ios iphone ipad icloud

我的iOS应用程序刚被拒绝,因为应用程序正在将数据存储在Documents上,因此它由iCloud备份,因为数据是从服务器下载的,所以不允许这样做。 但即使我正在使用addSkipBackupAttributeToItemAtURL它仍然显示为iCloud的备份。这是我使用的代码

    NSError *error = nil;
    NSData *data = [NSData dataWithContentsOfURL:url options:0 error:&error];
    if(!error)
    {
       [self HidePreLoader];
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
         NSLog(@"_paths--->%@",paths);
        NSString *path = [paths objectAtIndex:0];
         NSLog(@"_path---->%@",path);
        NSString *dataPath = [path stringByAppendingPathComponent:@"/MyFolder"];
         NSLog(@"_dataPath---->%@",dataPath);
        if (![[NSFileManager defaultManager] fileExistsAtPath:dataPath])
        {
            [[NSFileManager defaultManager] createDirectoryAtPath:dataPath withIntermediateDirectories:NO attributes:nil error:&error];
        }
        NSString *zipPath = [dataPath stringByAppendingPathComponent:downfilename];
        [data writeToFile:zipPath options:0 error:&error];
        if(!error)
        {
            [self HidePreLoader];
            ZipArchive *za = [[ZipArchive alloc] init];
            if ([za UnzipOpenFile: zipPath]) {
                BOOL ret = [za UnzipFileTo: dataPath overWrite: YES];
                if (NO == ret){} [za UnzipCloseFile];
                 NSLog(@"folderPath--->%@",folderPath);
   //Here i have used the use code
                NSURL *guidesURL = [NSURL fileURLWithPath:folderPath];
                [guidesURL setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey error:NULL];
  //The following code also doesnt work
  //NSURL *guidesURL = [NSURL fileURLWithPath:folderPath];
  //[self addSkipBackupAttributeToItemAtURL:guidesURL];

                  [self HidePreLoader];
                NSString *path = nil;
                if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
                {
                    path = [folderPath stringByAppendingPathComponent:@"module-B1-ipadmain-swipe-tablet.html"];
                }
                else
                {
                    path = [folderPath stringByAppendingPathComponent:@"module-B1-ipadmain-swipe-phone.html"];
                }

                NSLog(@"path--->%@",path);

                dispatch_async(dispatch_get_main_queue(), ^{

                    appDel.currentReadingPlanWithPath = path;
                    appDel.moduleDownloaded = YES;
                    [appDel SetCurrentDownloadPath];
                    NSLog(@"file download success");
                    [progview setHidden:YES];
                    [progval setHidden:YES];
                    [self HidePreLoader];
                    downloadView.userInteractionEnabled=YES;
                    [self SetModuleDownloaded:@"true"];
                    [self ShowAlert:@"Download" message:@"Success"];
                     [self HidePreLoader];
                                    });
                 [self HidePreLoader];
            }
        }
        else
        {
            NSLog(@"Error saving file %@",error);
        }
    }
    else
    {
        NSLog(@"Error downloading zip file: %@", error);
    }

});

AddSkipBackupAttributeToItemAtURL方法

-(BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL
{
assert([[NSFileManager defaultManager] fileExistsAtPath: [URL path]]);
NSError *error = nil;
BOOL success = [URL setResourceValue: [NSNumber numberWithBool: YES]forKey: NSURLIsExcludedFromBackupKey error: &error];
if(!success){
    NSLog(@"Error excluding %@ from backup %@", [URL lastPathComponent], error);
}
return success;
}

当我尝试上面的代码时.iCloud会在iOS7中显示应用程序。请帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)