UISearchController的取消按钮
关于UISearchController的设置就不多说了,可以参考或者自行上网查找。 情况 本人想实现通讯录上方的搜索框功能,但在搜索框的取消按钮的设置这个卡住,在网上搜了个遍,没有合适的做法,经过不懈的探索,终于找到解决方案,遂前来记录一下。
方案
添加两个属性
// 记录是否已经找到取消按钮lazy var hasFindCancelBtn: Bool = { return false}()// 定时器(用来定时查找取消按钮)lazy var link: CADisplayLink = { CADisplayLink(target: self, selector: #selector(findCancel))}()复制代码
提供查找并设置取消按钮的方法
func findCancel() { let btn = searchBar.value(forKey: "_cancelButton") as AnyObject if btn.isKind(of: NSClassFromString("UINavigationButton")!) { LXFLog("就是它") link.invalidate() link.remove(from: RunLoop.current, forMode: .commonModes) hasFindCancelBtn = true let cancel = btn as! UIButton cancel.setTitleColor(UIColor.red, for: .normal) cancel.setTitleColor(UIColor.orange, for: .highlighted) }}复制代码
代理方法
设置代理为当前控制器,并实现代理方法
searchBar.delegate = self复制代码
func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) { if !hasFindCancelBtn { link.add(to: RunLoop.current, forMode: .commonModes) }}复制代码
效果
附上相关项目: