spotlight with Core Data 到底好不好使?

6 小时 27 分钟前
 magic3584

做了一个记录的 app ,用的 Core Data ,上个版本添加了 spotlight, 代码很简单

        self.spotlightDelegate = StorageSpotlightDelegate(forStoreWith: description, coordinator: container.persistentStoreCoordinator)
        let isSpotlightDisable = UserDefaults.standard.bool(forKey: "isSpotlightDisable")
        if !isSpotlightDisable {
            self.toggleSpotlightIndexing(enable: true)
        }

//MARK: - Spotlight
extension CoreDataStack {
    public func toggleSpotlightIndexing(enable: Bool) {
        guard let spotlightDelegate = spotlightDelegate else { return }
        
        if enable {
            spotlightDelegate.startSpotlightIndexing()
        } else {
            spotlightDelegate.stopSpotlightIndexing()
            spotlightDelegate.deleteSpotlightIndex { error in
                if let error = error {
                    print(error)
                }
            }
        }
        
        UserDefaults.standard.set(!enable, forKey: "isSpotlightDisable")
    }
}     

前几天做完,手机上安装 tf 版本后,随便搜了一下发现没问题就上线了。昨天又试了一次,发现搜不到了。 如果我新增一条记录,开始是可以搜到的,但是如果我停止索引后再次开启,就搜不到了。

起初我以为自己手机 iOS18.0 的原因,并有可能是升级导致的。所以我在测试机 iOS15 进行了两个测试

  1. 直接安装新版本
  2. 先安装就版本,再安装新版本

都无问题。

同时在我自己手机上,发现极光词典查单词,也会有无法搜索到的情况。

不知道有无大佬有解决办法

214 次点击
所在节点    iDev
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/1087298

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX