如何解决如何在Xcode Swift中通过Realm使用查询
我的代码我在Realm中执行查询时遇到问题,我在Xcode中使用Realm
extension CategoryViewController: UISearchBarDelegate{
func searchBarSearchButtonClicked(_ searchBar: UISearchBar) {
realmCategories = realmCategories?.filter("title CONTAINS[cd] %@",searchBar.text!).sorted(byKeyPath: "title",ascending: true)
tableView.reloadData()
}
func searchBar(_ searchBar: UISearchBar,textDidChange searchText: String) {
if searchBar.text?.count == 0{
loadCategory()
dispatchQueue.main.async {
searchBar.resignFirstResponder()
}
}
}
}
解决方法
您需要使用NSPredicate那就是函数“ .filter”的期望
NSPredicate(格式:“标题包含[cd]%@”,searchBar.text!)
Returns a Results containing all objects matching the given predicate in the collection.
func filter(_ predicate: NSPredicate) -> Results<Object>
,
提示您的查询错误,应该对字符串类型使用撇号。在您的代码中查询必须是这样的:
realmCategories = realmCategories?.filter("title CONTAINS[cd] '%@'",searchBar.text!).sorted(byKeyPath: "title",ascending: true)
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。