V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
magic3584
V2EX  ›  iDev

spotlight with Core Data 到底好不好使?

  •  
  •   magic3584 · 4 小时 26 分钟前 · 178 次点击

    做了一个记录的 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. 先安装就版本,再安装新版本

    都无问题。

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

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

    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5344 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 23ms · UTC 05:45 · PVG 13:45 · LAX 21:45 · JFK 00:45
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.