PYSearch icon indicating copy to clipboard operation
PYSearch copied to clipboard

🔍 An elegant search controller which replaces the UISearchController for iOS (iPhone & iPad) .

Results 101 PYSearch issues
Sort by recently updated
recently updated
newest added

- When the PYSearchViewController showing and tap some text in the searcher like "oo", then quick delete all texts , now baseSearchTableView not show, and searchSuggestionVC is still presenting. -...

想要定制自己所需的searchBar,目前的PYSearch中外置的searchBar是weak,无法修改成自己的

没找到修改的接口 是searchHistoryTags吗 但是没效果

自定义搜索建议的tableviewcell后,点击cell,会更改searchBar的text 用_swSelf.searchBar.text = didSelectCell.textLabel.text; 既然都自定义cell了,cell的textLabel是不一定有值的,所以searchBar的text变为空了,很奇怪啊! 这时候再拿searchBar的text就不正确了。 建议去掉这句代码

就是说,search bar 输了很长的一串,但搜完后,搜索历史最多只显示10个字符

反而是点击搜索建议会响应这个代理。。 我想做上划收回键盘 ,发现你的代码里已经做了这一点了 但是方法就是不走

点击按钮跳转到搜索框控制器,我想问是直接用你的PYSearchViewController这个控制器吗,那我要改逻辑什么的岂不是要进你的PYSearchViewController这个第三方改,菜鸟求解答。谢谢

我实现数据源方法自定义了搜索建议之后,点击搜索发送网络请求请求数据,但是我发现,我用一个可变数组去接数据之后,我无法刷新tableView去重走一边数据源的方法给自定义Cell中的控件赋值,是怎么回事呢,急求!!!

无法使用pod 'PYSearch' ,没办法适用cocoaspod管理该框架,是什么问题呢?

// 5. Present a navigation controller UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:searchViewController]; [self presentViewController:nav animated:YES completion:nil]; 改成 [self.navigationController presentViewController:searchViewController animated:YES completion:nil]; 报错 reason: 'Application tried to present modally an active...