从品牌网站建设到网络营销策划,从策略到执行的一站式服务
为大家介绍一下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]; ⑧
}
成都网站建设公司地址:成都市青羊区太升南路288号锦天国际A座10层 建设咨询028-86922220
成都快上网科技有限公司-四川网站建设设计公司 | 蜀ICP备19037934号 Copyright 2020,ALL Rights Reserved cdkjz.cn | 成都网站建设 | © Copyright 2020版权所有.
专家团队为您提供成都网站建设,成都网站设计,成都品牌网站设计,成都营销型网站制作等服务,成都建网站就找快上网! | 成都网站建设哪家好? | 网站建设地图