1

アプリが最初の起動時に icloud 情報を取得しないバグがありますが、その後の試行では取得します。これは、icloud からファイルをロードするための私のコードです。

void DLC::loadFromiCloud(std::string ファイル名){

NSURL *mUbiqUrl = [[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil];

if (mUbiqUrl) {

std::string fullPath = getLibraryPath_iOS() + fileName;

NSString* restorePath = [NSString stringWithUTF8String:(fullPath.c_str())];
    NSError *error = nil;
    NSURL *fileToDownload = [mUbiqUrl URLByAppendingPathComponent:[NSString stringWithUTF8String:(fileName.c_str())]];
    [[NSFileManager defaultManager] startDownloadingUbiquitousItemAtURL:fileToDownload 
                                                error:&error];
    if (error != nil)
    {
        NSLog(@"iCloud L2 error: %@", [error localizedDescription]);
    }
    else 
    {
        NSNumber*  isIniCloud = nil;
        if ([fileToDownload getResourceValue:&isIniCloud forKey:NSURLIsUbiquitousItemKey error:nil])
        {
            // If the item is in iCloud, see if it is downloaded.
            if ([isIniCloud boolValue]) 
            {
                NSNumber*  isDownloaded = nil;
                if ([fileToDownload getResourceValue:&isDownloaded forKey:NSURLUbiquitousItemIsDownloadedKey error:nil]) 
                {
                    if ([isDownloaded boolValue])
                    {
                        NSString *fileData = [NSString stringWithContentsOfURL:fileToDownload encoding:NSUTF8StringEncoding error:&error];
                        //NSLog(@"iCloud data: %@", fileData);
                        [fileData writeToFile:restorePath atomically:YES encoding:NSUTF8StringEncoding error:&error];
                        if (error)
                        {
                            NSLog(@"iCloud L3 error: %@", [error localizedDescription]);
                        }
                    }
                }
            }
        }
    }
}}
4

0 に答える 0