对UISearchController的探索(一)

前言

在杨武老师讲的TableView视频里面,有这么一段介绍了搜索的部分。
UISearchBar(iOS2+)
UISearchDisplayController(iOS7)
UISearchController(iOS8)
UISearchController是作为现在最新的搜索工具,具体怎么用也没有讲解,正好我也没有学过,所以想从文档入手,查看怎么去使用一个UISearchController。
全文语言为Swift。
全部资料来自Document and Api Reference。


初始化

![init][1]

这里的参数searchResultsController为展示搜索结果的UIViewController类的对象,如果展示搜索结果的界面与自己搜索结果的页面是同一个视图,那么就直接填写nil。

现在就来初始化一个UISearchController。并将其放入自己的TableView中,因为本篇主要讲解UISearchController,所以创建TableView的过程略过。

  var searchController:UISearchController = UISearchController.init(searchResultsController: nil)

 //MARK:- Life cycle
    override func viewDidLoad()
    {
        super.viewDidLoad()
        self.tableview.tableHeaderView = self.searchController.searchBar;
    }


Active

![Active][2]
active属性表示搜索界面的状态,只读属性。


Delegate

![delegate][3]
delegate就是UISearchController的代理。
如果要设置代理,首先要继承UISearchControllerDelegate这个协议。
在点进去协议后可以看到里面的方法。

public protocol UISearchControllerDelegate : NSObjectProtocol {
    
   // These methods are called when automatic presentation or dismissal occurs. 
   //They will not be called if you present or dismiss the search controller yourself.
    @available(iOS 8.0, *)
    optional public func willPresentSearchController(searchController: UISearchController)
    @available(iOS 8.0, *)
    optional public func didPresentSearchController(searchController: UISearchController)
    @available(iOS 8.0, *)
    optional public func willDismissSearchController(searchController: UISearchController)
    @available(iOS 8.0, *)
    optional public func didDismissSearchController(searchController: UISearchController)
    
    // Called after the search controller's search bar has agreed to begin editing or when 'active' is set to YES. 
   //If you choose not to present the controller yourself or do not implement this method, a default presentation is performed on your behalf.
    @available(iOS 8.0, *)
    optional public func presentSearchController(searchController: UISearchController)
}

可以看出都是可选方法,应该是UISearchController的Life cycle。我们可以结合刚刚的active属性,去模拟这些方法发生的时间顺序。

//MARK:- UISearchControllerDelegate
    func presentSearchController(searchController: UISearchController) {
        print("presentSearchController \(searchController.active)");
    }
    func willPresentSearchController(searchController: UISearchController) {
        print("willPresentSearchController \(searchController.active)");
    }
    func didPresentSearchController(searchController: UISearchController) {
         print("didPresentSearchController \(searchController.active)");
    }
    func didDismissSearchController(searchController: UISearchController) {
        print("didPresentSearchController \(searchController.active)");
    }
    func willDismissSearchController(searchController: UISearchController) {
        print("willDismissSearchController \(searchController.active)");
    }

运行程序。
点击搜索栏。
![s1][4]

presentSearchController false
willPresentSearchController false
didPresentSearchController true

![s2][5]
点击cancel

willDismissSearchController true
didPresentSearchController false


dimsBackgroundDuringPresentation

![4.png-120kB][6]
决定在搜索时,底层的内容是否要变暗。
默认值是true。

默认情况就是这样:
![dimTure][7]

如果我们设定为false
设定代码

self.searchController.dimsBackgroundDuringPresentation = false

那么现在搜索时界面就是这样:
![dimFalse][8]


hidesNavigationBarDuringPresentation

![hideNav][9]
在搜索栏使用的时候是否需要隐藏NavigationBar,默认值为true。
效果图:
![hideTure][10]
如果我们设定为false
设定代码

self.searchController.hidesNavigationBarDuringPresentation = false

那么现在界面就是这样:
![hideFalse][11]


searchBar

![searchBar][12]

search controller 所使用的 search bar 对象,只读属性。


searchResultsController

![searchController][13]

管理搜索结果的 view controller,只读属性。


searchResultsUpdater

![searchResultsUpdater][14]

该对象更新搜索结果的view controller的内容。

因为id< UISearchResultsUpdating >可以看出这也是一个delegate
所以这时候我们给class继承UISearchResultsUpdating协议。

class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource ,UISearchControllerDelegate ,UISearchResultsUpdating 

并设置代理。

  self.searchController.searchResultsUpdater=self

点进UISearchResultsUpdating协议中,查看其代理方法。
![update][15]
发现只有一个方法,- updateSearchResultsForSearchController:,该方法在点击search bar或者用户改变search bar的时候会被调用。
另外该方法是Required,说明必须要实现。

   //MARK:- UISearchResultsUpdating
    func updateSearchResultsForSearchController(searchController: UISearchController)
    {
        
    }

结尾

updateSearchResultsForSearchController这个方法是UISearchController的关键部分,更新将稍后放出。
[1]: http://static.zybuluo.com/zandhappy/49xgvujsu7f8hl03iy02eba5/1.png
[2]: http://static.zybuluo.com/zandhappy/26wknsmzx4w8rwlimonuq0uo/2.png
[3]: http://static.zybuluo.com/zandhappy/uusxt8eodiblqfj8o6wvu8zp/3.png
[4]: http://static.zybuluo.com/zandhappy/qinsgrldr0qa1a1m3eldgg9z/s1.png
[5]: http://static.zybuluo.com/zandhappy/424585967r3kk0afik0o5pfq/s2.png
[6]: http://static.zybuluo.com/zandhappy/nm6bu5uc6xx85qluh2w0eq3q/4.png
[7]: http://static.zybuluo.com/zandhappy/x1icvr4xoelekvg80mm8u7ov/dimTure.png
[8]: http://static.zybuluo.com/zandhappy/olt64voim51c6oirfidzjqgy/dimno.png
[9]: http://static.zybuluo.com/zandhappy/076mjoufk3ecky99jdblzlms/hideNav.png
[10]: http://static.zybuluo.com/zandhappy/ohzqydions6b5nbi1dvtmzr8/hideTure.png
[11]: http://static.zybuluo.com/zandhappy/ef7klmo7uf4eby83ka2bu2sb/hideFalse.png
[12]: http://static.zybuluo.com/zandhappy/hjuea4g5b51i81q3tf0bsy3h/searchBar.png
[13]: http://static.zybuluo.com/zandhappy/w22iiq9e0t97q5at5l65rfq8/searchController.png
[14]: http://static.zybuluo.com/zandhappy/ci63l8wyva1wq4irbk0wxhav/searchResultsUpdater%20.png
[15]: http://static.zybuluo.com/zandhappy/f4vgv609mb81aaq1ac1rucc6/update.png

你可能感兴趣的:(对UISearchController的探索(一))