2017-08-27 33 views
5

Uygulamam bir pdf dosyası oluşturur ve bu pdf belgesini iCloud Drive programlı olarak hızlı bir şekilde 3 kullanarak kaydetmek istiyorum.pdf belgesi iCloud Drive'a programlı olarak hızlıca nasıl kaydedilir?

Bir örnek için, iCloud Drive'a kaydetmek için bir Metin dosyası kullandım. Bu kod hatasız çalıştığını

func copyDocumentsToiCloudDrive() { 
    var error: NSError? 
    let iCloudDocumentsURL = FileManager.default.url(forUbiquityContainerIdentifier: nil)?.appendingPathComponent("myCloudTest") 

    do{ 
     //is iCloud working? 
     if iCloudDocumentsURL != nil { 
      //Create the Directory if it doesn't exist 
      if (!FileManager.default.fileExists(atPath: iCloudDocumentsURL!.path, isDirectory: nil)) { 
       //This gets skipped after initial run saying directory exists, but still don't see it on iCloud 
       try FileManager.default.createDirectory(at: iCloudDocumentsURL!, withIntermediateDirectories: true, attributes: nil) 
      } 
     } else { 
      print("iCloud is NOT working!") 
      // return 
     } 

     if error != nil { 
      print("Error creating iCloud DIR") 
     } 

     //Set up directorys 
     let localDocumentsURL = FileManager.default.urls(for: FileManager.SearchPathDirectory.documentDirectory, in: .userDomainMask).last! as NSURL 

     //Add txt file to my local folder 
     let myTextString = NSString(string: "HELLO WORLD") 
     let myLocalFile = localDocumentsURL.appendingPathComponent("myTextFile.txt") 
     _ = try myTextString.write(to: myLocalFile!, atomically: true, encoding: String.Encoding.utf8.rawValue) 

     if ((error) != nil){ 
      print("Error saving to local DIR") 
     } 

     //If file exists on iCloud remove it 
     var isDir:ObjCBool = false 
     if (FileManager.default.fileExists(atPath: iCloudDocumentsURL!.path, isDirectory: &isDir)) { 
      try FileManager.default.removeItem(at: iCloudDocumentsURL!) 
     } 

     //copy from my local to iCloud 
     if error == nil { 
      try FileManager.default.copyItem(at: localDocumentsURL as URL, to: iCloudDocumentsURL!) 
     } 
    } 
    catch{ 
     print("Error creating a file") 
    } 

} 

:

Bu

benim kodudur. Ancak kayıtlı dosyayı iCloud Drive'da göstermiyor.

Bu link başvuruyor ve bu kodu yazdım.

+0

Çıktı aldım .. !! Bende aynı sorun vardı. Klasör oluşturuluyor ancak dosya içinde eksik. Bana rehberlik edebilir misin? –

cevap

0

Kodunuzun amaçlandığı gibi çalıştığını varsayarak, sürümün sürümünü güncellemeyi ve uygulamanızın numarasını oluşturmayı deneyin. ICloud değişikliklerinin yansıtılması için bu değerlerde bir değişiklik yapılması gerekir.

İlgili konular