2011-12-23 37 views
9

我集成iCloud的我的應用程序和同步的工作,但有時我得到這個錯誤:iCloud的同步Ubiquity的錯誤

+[PFUbiquityTransactionLog loadPlistAtLocation:withError:](324): CoreData: Ubiquity: 
Encountered an error trying to open the log file at the location: <PFUbiquityLocation: 
0x1993c0>: /private/var/mobile/Library/Mobile Documents/ ... 
Error: Error Domain=NSCocoaErrorDomain Code=256 "The operation couldn’t be completed. 
(Cocoa error 256 - The item failed to download.)" 

-[PFUbiquityTransactionLog loadComparisonMetadataWithError:](220): CoreData: Ubiquity: 
Error encountered while trying to load the comparison metadata for transaction log: 
<PFUbiquityTransactionLog: 0x1a3d60> 
transactionLogLocation: <PFUbiquityLocation: 0x1993c0>: /private/var/mobile/Library/Mobile Documents/ 
transactionNumber: (null) 

Error: Error Domain=NSCocoaErrorDomain Code=134302 "The operation couldn’t be completed. 
(Cocoa error 134302.)" UserInfo=0x1a50e0 {reason=Error during property list parsing during 
import or opening of log file at location: <PFUbiquityLocation: 0x1993c0>:  
/private/var/mobile/Library/Mobile Documents/ ... Error Domain=NSCocoaErrorDomain Code=256 
"The operation couldn’t be completed. (Cocoa error 256 - The item failed to download.)" 

不知道這意味着什麼,但如果我等待了一會兒,似乎在iCloud中合併完成...任何人都知道如何解決這個問題?

我試着設置

[_document.managedObjectContext 
    setMergePolicy:NSMergeByPropertyStoreTrumpMergePolicy] 

,但沒有任何幫助...

日Thnx!

回答

3

這種日誌只是資料。

iCloud deamon只能通過獲取元數據才能看到文件在您的無處不在的容器中。下載文件內容是第二個單獨的步驟。

如果無法下載文件,它只會稍後嘗試下載。

+0

我看到非常類似的錯誤,包括「導入操作遇到損壞的日誌文件」。 iCloud deamon每分鐘都會不停地重試,但對我來說最少的是,它似乎無法克服這些錯誤。但是,我看到了在後續重試中解決錯誤的情況。 – Daniel

+0

@Daniel您是否找到解決方案?我遇到的問題是,我每隔30秒就會收到一個「CoreData:Ubiquity:導入事務日誌錯誤:錯誤」錯誤。獲取請求被阻止。 – Stephan

+0

@Stephan - 是的,我找到了解決這個問題的方法:升級到iOS 5.1。儘管它明顯更好,但我仍然發現可能需要一段時間才能同步(這是可以接受的),但是我不再收到變更的通知。但是,如果我殺了應用程序並重新啓動,我可以看到新的數據。我認爲關閉和打開UIManagedDocument也會解決這個問題,但我已經推遲這樣做,希望新版iOS版本能夠自動修復這個問題。 – Daniel