推广 热搜: 铸铁t型槽平台  滤芯  收购ACF  回收ACF  求购ACF  麻将  铸铁焊接平台  气动卧闸  不锈钢螺栓  钢箱梁顶推施工 

国内使用cloudflare有效果吗(4在使用CloudKit后)

   日期:2023-08-21     浏览:49    评论:0    
核心提示:默认情况下,不允许使用constraint,取消后,需要代码处理,不然会出现数据重复;经过一番折腾,找到了个简单办法,本地Entity可以继续使用constraint, 与大家分享。第一步:新建Mod

默认情况下,不允许使用constraint,取消后,需要代码处理,不然会出现数据重复;经过一番折腾,找到了个简单办法,本地Entity可以继续使用constraint, 与大家分享。

第一步:新建Model Configuration

选中Model文件, 通过Editor -> Add Configuration菜单,新建Local和Cloud两个Configuration,把需要同步的Entity拖入Cloud,本地使用的Entity拖到Local;

国内使用cloudflare有效果吗(4在使用CloudKit后)(1)

image.png

对Cloud Configuration,选中Used with CloudKit选荐

国内使用cloudflare有效果吗(4在使用CloudKit后)(2)

image.png

第二步:修改Persistence中的container配置

var container: NSPersistentCloudKitContainer = { let container = NSPersistentCloudKitContainer(name: "AAStock") // 1. 注意:与实际保持一致 let storeDirectory = FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask).first! // 2. 获取文件位置 // Create a store description for a local store let localStoreLocation = storeDirectory.appendingPathComponent("local.sqlite") // 3. 为Local配置添加Store let localStoreDescription = NSPersistentStoreDescription(url: localStoreLocation) localStoreDescription.configuration = "Local" // Create a store description for a CloudKit-backed local store let cloudStoreLocation = storeDirectory.appendingPathComponent("cloud.sqlite") // 4. 为Cloud配置添加Store let cloudStoreDescription = NSPersistentStoreDescription(url: cloudStoreLocation) cloudStoreDescription.configuration = "Cloud" // Set the container options on the cloud store cloudStoreDescription.cloudKitContainerOptions = NSPersistentCloudKitContainerOptions( containerIdentifier: "iCloud.com.tang.AAStock") // 5. 注意保持CloudKit container一致 // Update the container's list of store descriptions container.persistentStoreDescriptions = [ cloudStoreDescription, localStoreDescription ] // Load both stores container.loadPersistentStores { storeDescription, error in guard error == nil else { fatalError("Could not load persistent stores. (error!)") } } return container }()

通过上述两步配置,可以愉快地使用constraint了,试试吧。

,
原文链接:http://www.tyw.net.cn/news/show-112620.html,转载和复制请保留此链接。
以上就是关于国内使用cloudflare有效果吗(4在使用CloudKit后)全部的内容,关注我们,带您了解更多相关内容。
 
标签: 效果 文件 国内
打赏
 
更多>同类资讯
0相关评论

推荐资讯
网站首页  |  VIP套餐介绍  |  关于我们  |  联系方式  |  使用协议  |  版权隐私  |  SITEMAPS  |  网站地图  |  排名推广  |  广告服务  |  积分换礼  |  网站留言  |  RSS订阅  |  违规举报