美文网首页
healthkit 查询数据时过滤掉用户手动输入的数据

healthkit 查询数据时过滤掉用户手动输入的数据

作者: 磊简单 | 来源:发表于2022-01-18 15:53 被阅读0次

    查询NSPredicate

    
    let predicate2 = NSPredicate(format: "metadata.%K != YES", HKMetadataKeyWasUserEntered)
    
    
    • 还有其他NSPredicate
    
    let compoundPredicate = NSCompoundPredicate(type: .and, subpredicates: [predicate1, predicate2])
    
    

    十分感谢

    相关文章

      网友评论

          本文标题:healthkit 查询数据时过滤掉用户手动输入的数据

          本文链接:https://www.haomeiwen.com/subject/hxbkhrtx.html