2017-02-14 45 views
0

我正在构建一个将其文件保存到用户的iCloud Drive文件夹的应用程序。在我删除iCloud Drive中的应用程序文件夹以查看会发生什么之前,一切都一直很好。从那以后,每次打开应用程序,它都会尝试将我的示例文件保存在iCloud中,但它不起作用(reloadiCloud()函数被设置为在ViewWillAppear中运行)。有什么我需要做的创建iCloud Drive文件夹?我的代码如下。应用程序不重新创建iCloud Drive文件夹

func reloadiCloud() { 
    ubiquityURL = filemgr.url(forUbiquityContainerIdentifier: nil) 

    guard ubiquityURL != nil else { 
     print("Unable to access iCloud Account") 
     return 
    } 

    ubiquityURL = ubiquityURL?.appendingPathComponent("Documents") 

    metaDataQuery = NSMetadataQuery() 

    metaDataQuery?.predicate = NSPredicate(format: "NOT %K.pathExtension = ''", NSMetadataItemFSNameKey) 
    metaDataQuery?.searchScopes = [NSMetadataQueryUbiquitousDocumentsScope] 

    NotificationCenter.default.addObserver(self, selector: #selector(ViewController.metadataQueryDidFinishGathering), name: NSNotification.Name.NSMetadataQueryDidFinishGathering, object: metaDataQuery!) 

    metaDataQuery!.start() 
} 

func metadataQueryDidFinishGathering(notification: NSNotification) -> Void { 
    let query: NSMetadataQuery = notification.object as! NSMetadataQuery 

    query.disableUpdates() 

    NotificationCenter.default.removeObserver(self, name: NSNotification.Name.NSMetadataQueryDidFinishGathering, object: query) 

    query.stop() 

    if query.resultCount > 0 { 
     fileList = [] 
     for var i in (0..<query.resultCount) { 
      let currentFileURL = query.value(ofAttribute: NSMetadataItemURLKey, forResultAt: i) as! URL 
      fileList.append(currentFileURL.lastPathComponent) 
      tableView.reloadData() 
     } 
     tableView.reloadData() 
     print(fileList) 
    } else { 
     let sampleFile = Bundle.main.url(forResource: "Sample", withExtension: "pdf")! 
     movetoiCloud(forURL: sampleFile) 
    } 
} 



func movetoiCloud(forURL: URL) { 
    let fileName = forURL.lastPathComponent 
    ubiquityURL = filemgr.url(forUbiquityContainerIdentifier: nil)?.appendingPathComponent("Documents/\(fileName)") 

    //Check if the filename exists and add "copy" to the new version 
    for var i in (0..<fileList.count) { 
     if fileList[i] == forURL.lastPathComponent { 
      let base = ubiquityURL?.absoluteURL.deletingLastPathComponent() 
      let endIndex = fileName.index(fileName.endIndex, offsetBy: -4) 

      let truncatedExtension = fileName.substring(from: endIndex) 
      let truncatedName = fileName.substring(to: endIndex).appending(" copy").appending(truncatedExtension) 

      ubiquityURL = base?.appendingPathComponent(truncatedName) 
      print("New ubiquity URL: \(ubiquityURL)") 
     } 
    } 

    do { 
     try filemgr.setUbiquitous(true, itemAt: forURL, destinationURL: (ubiquityURL)!) 
     reloadiCloud() 
     print("Move to iCloud OK") 
    } catch let error { 
     print("moveToiCloud failed: \(error.localizedDescription)") 
    } 
} 

回答

2

尝试更新信息plist中的捆绑号码和版本,需要增加这些值才能使icloud添加生效。

+0

Bumping the Bundle版本立即为我工作。谢谢! – damote

+0

乐意帮忙! @damote –

+0

OMG,我在这里搜索了2天。但是如果用户以后从驱动器中删除文件夹,它是否会重新创建文件夹? – ChanWarde

相关问题