溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

iOS網(wǎng)絡(luò)編程-解決iCloud文檔存儲(chǔ)過程中文檔沖突問題

發(fā)布時(shí)間:2020-09-07 08:55:27 來源:網(wǎng)絡(luò) 閱讀:317 作者:9ria 欄目:移動(dòng)開發(fā)

為大家介紹一下iOS網(wǎng)絡(luò)編程的教程。iCloud文檔在保存的過程中難免會(huì)發(fā)生沖突,我們必須要有一套解決沖突的策略。策略的采用要根據(jù)用戶的需求而定,有的簡單有的復(fù)雜,最簡單的是 直接使用當(dāng)前版本覆蓋沖突版本。復(fù)雜的策略,例如:如果是兩個(gè)文本文件沖突,可以將兩個(gè)沖突點(diǎn)列出來,讓用戶來判斷再進(jìn)行保存。


我們采用的策略是使用當(dāng)前版本覆蓋以前的版本。解決沖突首先需要在updateUbiquitousDocuments:方法中注冊(cè)UIDocumentStateChangedNotification通知:

//當(dāng)iCloud中的文件變化時(shí)候調(diào)用


- (void)updateUbiquitousDocuments:(NSNotification *)notification {


… …


if (_myCloudDocument) {


//注冊(cè)CloudDocument對(duì)象到文檔協(xié)調(diào)者,文檔狀態(tài)變化才能收到通知


[NSFileCoordinator addFilePresenter:_myCloudDocument]; ①


//注冊(cè)文檔狀態(tài)變化通知


[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(resolveConflict:)


name:UIDocumentStateChangedNotification object:nil]; ②


}


}


//文檔沖突解決


- (void)resolveConflict:(NSNotification *)notification {


if (_myCloudDocument


&& _myCloudDocument.documentState == UIDocumentStateInConflict) { ③


NSLog(@”沖突發(fā)生”);


//文檔沖突解決策略


NSError *error;


if (![NSFileVersion removeOtherVersionsOfItemAtURL: _


myCloudDocument.fileURL error:&error]) { ④


NSLog(@”移除其它的文檔: %@”, [error localizedFailureReason]);


return;


}


_myCloudDocument.contents = _txtContent.text; ⑤


[_myCloudDocument updateChangeCount:UIDocumentChangeDone]; ⑥


}


[[NSNotificationCenter defaultCenter] removeObserver:self


name:UIDocumentStateChangedNotification object:nil]; ⑦


//從文檔協(xié)調(diào)者中解除CloudDocument對(duì)象


[NSFileCoordinator removeFilePresenter:_myCloudDocument]; ⑧


}



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI