UISearchController创建搜索条并管理搜索结果

1. 使用UISearchController来创建搜索条

说明:在TableView的使用的基础上进行
(1)添加搜索条到TableView的关键代码

//1. 定义搜索控制器变量UISearchController
var sc : UISearchController!
//2.UISearchController初始化
//实例化结果:搜索结果控制器(nil则结果显示在搜索条所在视图)
sc = UISearchController(searchResultsController: nil)
//更新搜索结果的控制器
sc.searchResultsUpdater = self
//将TableView的页眉视图定义为搜索条
tableView.tableHeaderView = sc.searchBar

(2)遵从searchResultsUpdater代理相关的协议UISearchResultsUpdating
备注:遵从UISearchResultsUpdating协议并实现updateSearchResults方法,当点击搜索条或者更改搜索文字时调用updateSearchResults方法,让搜索控制器显示搜索结果.


UISearchResultsUpdating.png
func updateSearchResults(for searchController: UISearchController) {
        
    }

(3)运行结果


搜索条.png

2. 筛选内容

筛选器:搜索控制器没有现成的搜索功能,需要手动添加筛选规则

var searchResults : [MyDevice] = []//定义空数组保存筛选结果
 //添加一个筛选器方法:使用Swift数组自带filter方法,返回一个符合条件的新数组
    func searchFilter(text:String) {
        searchResults = devices.filter({ (area) -> Bool in
            return area.deviceName.localizedCaseInsensitiveContains(text)
        })
    }

3. 更新筛选结果(实现updateSearchResults方法)

实现updateSearchResults方法,当点击搜索条或者更改搜索文字时调用updateSearchResults方法,让搜索控制器显示搜索结果.

//当点击搜索条或者更改搜索文字时被调用
    func updateSearchResults(for searchController: UISearchController) {
        //获取搜索栏文字,筛选后刷新列表
        if let text = searchController.searchBar.text {
            searchFilter(text: text)
            tableView.reloadData()
        }
    }

4. 显示筛选结果

原数据源和搜索结果(新数据源)的区分,即何时显示搜索结果并更新列表的数据源:当搜索条在使用时,isActive属性为true,搜索结果为新的数据源.


修改1.png

修改2.png

备注:搜索时单元格不可编辑


屏幕快照 2019-01-07 下午2.40.29.png

5. 完整代码

//
//  MyTableViewController.swift
//  JackUChat
//
//  Created by 徐云 on 2019/1/4.
//  Copyright © 2019 Liy. All rights reserved.
//

import UIKit

class MyTableViewController: UITableViewController,UISearchResultsUpdating {
    
    var devices = [MyDevice(deviceId: "001", deviceName: "平缝机", deviceCount: "20"),MyDevice(deviceId: "002", deviceName: "包缝机", deviceCount: "20"),MyDevice(deviceId: "003", deviceName: "绷缝机", deviceCount: "20"),MyDevice(deviceId: "004", deviceName: "特种机", deviceCount: "20"),MyDevice(deviceId: "005", deviceName: "裁床", deviceCount: "20"),MyDevice(deviceId: "006", deviceName: "绣花机", deviceCount: "20"),MyDevice(deviceId: "007", deviceName: "abB", deviceCount: "20"),MyDevice(deviceId: "008", deviceName: "aas", deviceCount: "20"),MyDevice(deviceId: "009", deviceName: "AAa", deviceCount: "20"),MyDevice(deviceId: "010", deviceName: "BS", deviceCount: "20"),MyDevice(deviceId: "011", deviceName: "bd", deviceCount: "20"),MyDevice(deviceId: "012", deviceName: "c", deviceCount: "20")]
    
    var sc : UISearchController!//1. 定义UISearchController
    var searchResults : [MyDevice] = []//定义空数组保存筛选结果
    
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        //2.UISearchController初始化
        sc = UISearchController(searchResultsController: nil)//结果控制器
        sc.searchResultsUpdater = self
        tableView.tableHeaderView = sc.searchBar
        

        // Uncomment the following line to preserve selection between presentations
        // self.clearsSelectionOnViewWillAppear = false

        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem
    }

    // MARK: - Table view data source

//    override func numberOfSections(in tableView: UITableView) -> Int {
//        // #warning Incomplete implementation, return the number of sections
//        return 0
//    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // #warning Incomplete implementation, return the number of rows
        //return devices.count
        return sc.isActive ? searchResults.count : devices.count
    }

    
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        // Configure the cell...
        let cellId = String(describing: MyTableViewCell.self)
        let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! MyTableViewCell
        //let device = devices[indexPath.row]
        let device = sc.isActive ? searchResults[indexPath.row] : devices[indexPath.row]
        cell.deviceNameLabel.text = device.deviceName
        cell.deviceNoLabel.text = device.deviceId
        cell.countLabel.text = device.deviceCount
        return cell
    }
 
    //当点击搜索条或者更改搜索文字时被调用
    func updateSearchResults(for searchController: UISearchController) {
        //获取搜索栏文字,筛选后刷新列表
        if var text = searchController.searchBar.text {
            text = text.trimmingCharacters(in: .whitespaces)//忽略前后空格
            searchFilter(text: text)
            tableView.reloadData()
        }
    }
    
    //添加一个筛选器方法:使用Swift数组自带filter方法,返回一个符合条件的新数组
    func searchFilter(text:String) {
        searchResults = devices.filter({ (area) -> Bool in
            return area.deviceName.localizedCaseInsensitiveContains(text)
        })
    }

    
    // Override to support conditional editing of the table view.
    override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
        // Return false if you do not want the specified item to be editable.
        //return true
        return !sc.isActive
    }
 

    /*
    // Override to support editing the table view.
    override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
        if editingStyle == .delete {
            // Delete the row from the data source
            tableView.deleteRows(at: [indexPath], with: .fade)
        } else if editingStyle == .insert {
            // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
        }    
    }
    */

    /*
    // Override to support rearranging the table view.
    override func tableView(_ tableView: UITableView, moveRowAt fromIndexPath: IndexPath, to: IndexPath) {

    }
    */

    /*
    // Override to support conditional rearranging of the table view.
    override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
        // Return false if you do not want the item to be re-orderable.
        return true
    }
    */

    /*
    // MARK: - Navigation

    // In a storyboard-based application, you will often want to do a little preparation before navigation
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        // Get the new view controller using segue.destination.
        // Pass the selected object to the new view controller.
    }
    */

}

6.界面展示

搜索前.png

搜索后.png

7. 定制搜索条外观

(1)外观选项


外观选项.PNG

(2)定制搜索条外观


定制搜索条外观.png

备注:设置搜索条背景不变暗:默认会变暗,当变暗时不能点击搜索到条目
(3)界面展示
界面展示.png

8. 问题汇总:

(1) 搜索条消失的bug:点搜索条展示动画后,搜索条可能被顶到导航栏之上,且不可见

  • 原因:取消了导航栏的半透明属性造成的


    NavigationBar.png
  • 解决:导航控制器的扩展边缘属性,包含不透明条


    NavigationController.png

    或者:

self.navigationController?.extendedLayoutIncludesOpaqueBars = true
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容

  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,094评论 1 32
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,089评论 4 62
  • 俗话说得好:滴水真当涌泉相报。困难时一双强有力的大手伸过来我们会感恩;困惑时,一句句温暖的话语讲出来,我...
    黄佳琪1阅读 206评论 0 0
  • 大家都知道,狗狗有两大非凡的感官系统,即嗅觉系统和听力系统,仅凭借这两大本领即可卓然于宠物界。如果从唯物主义的角度...
    好睐鼠阅读 411评论 0 0
  • 假如我的真心实意 你不为所动 假如我的心里只有你 你不曾心动 假如我的相思只为你 你不曾在意 假如我的人格 要我做...
    枫林听雨_4e72阅读 1,392评论 44 38