91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS網絡編程-解決iCloud文檔存儲過程中文檔沖突問題

發布時間:2020-09-07 08:55:27 來源:網絡 閱讀:317 作者:9ria 欄目:移動開發

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


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

//當iCloud中的文件變化時候調用


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


… …


if (_myCloudDocument) {


//注冊CloudDocument對象到文檔協調者,文檔狀態變化才能收到通知


[NSFileCoordinator addFilePresenter:_myCloudDocument]; ①


//注冊文檔狀態變化通知


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


name:UIDocumentStateChangedNotification object:nil]; ②


}


}


//文檔沖突解決


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


if (_myCloudDocument


&& _myCloudDocument.documentState == UIDocumentStateInConflict) { ③


NSLog(@”沖突發生”);


//文檔沖突解決策略


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]; ⑦


//從文檔協調者中解除CloudDocument對象


[NSFileCoordinator removeFilePresenter:_myCloudDocument]; ⑧


}



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江门市| 新昌县| 华阴市| 扬中市| 彭水| 阿瓦提县| 博乐市| 都安| 望谟县| 资兴市| 大悟县| 五台县| 唐山市| 凤翔县| 英山县| 滦平县| 田林县| 绥宁县| 额尔古纳市| 沙洋县| 高邑县| 蕲春县| 连南| 邳州市| 玉溪市| 吴桥县| 普兰店市| 汝阳县| 渝中区| 和平区| 墨江| 礼泉县| 芦山县| 乐都县| 沙雅县| 衡水市| 黄龙县| 安阳县| 漳州市| 翼城县| 陆良县|