真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

UISearchController怎么在iOS中使用-創(chuàng)新互聯(lián)

今天就跟大家聊聊有關(guān)UISearchController怎么在iOS 中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

目前創(chuàng)新互聯(lián)已為上千多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管運(yùn)營(yíng)、企業(yè)網(wǎng)站設(shè)計(jì)、于田網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶(hù)導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶(hù)和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。

一般用法

  1. 在父控制器中創(chuàng)建子控制器

  2. 用子控制器創(chuàng)建 UISearchController,通常會(huì)把 UISearchController 變成父控制器的屬性

  3. 設(shè)置 UISearchController 的searchResultsUpdater屬性

  4. 通常會(huì)在父控制器上放置 UISearchController 的searchBar

  5. 把父控制器definesPresentationContext屬性設(shè)置為 true

以下為父控制器代碼示例

let searchResultsVC = SearchResultsVC(allStrings: allStrings)
searchController = UISearchController(searchResultsController: searchResultsVC)
searchController.searchResultsUpdater = searchResultsVC;
let tableView = UITableView(frame: view.bounds)
tableView.dataSource = self
view.addSubview(tableView)
tableView.tableHeaderView = searchController.searchBar;
tableView.tableFooterView = UIView()
definesPresentationContext = true;

UISearchController 的searchResultsUpdater屬性一般設(shè)置為父控制器或子控制器。這個(gè)屬性的值要符合 UISearchResultsUpdating 協(xié)議,實(shí)現(xiàn)updateSearchResults(for searchController: UISearchController)方法。這個(gè)方法會(huì)在searchBar變?yōu)榈谝豁憫?yīng)者(比如,當(dāng)用戶(hù)點(diǎn)擊搜索框,鍵盤(pán)彈出),以及搜索關(guān)鍵詞改變時(shí)調(diào)用。在這個(gè)方法中寫(xiě)入執(zhí)行搜索、更新 UI 的代碼。

以上代碼將子控制器作為 UISearchController 的searchResultsUpdater。假設(shè)子控制器的數(shù)據(jù)源為 allStrings 和 strings,均為含 String 的 Array。其中,allStrings 為常量,包含所有的 String;strings 包含符合搜索條件的 String,需要在用戶(hù)輸入時(shí)更新。搜索條件為,含有用戶(hù)輸入的內(nèi)容,不區(qū)分大小寫(xiě)。用 UITableView 展示搜索結(jié)果。在updateSearchResults(for searchController: UISearchController)方法中,獲取 searchBar 的text,更新 strings,更新 UI。

以下是子控制器代碼示例

func updateSearchResults(for searchController: UISearchController) {
 strings.removeAll()
 if let text = searchController.searchBar.text?.uppercased(), !text.isEmpty {
  strings = allStrings.filter { $0.contains(text) }
 }
 tableView.reloadData()
}

改變樣式

默認(rèn)情況下,用戶(hù)點(diǎn)擊搜索框,導(dǎo)航欄(navigation bar)隱藏,UISearchBar 上移,下面能看到父控制器,但有灰色蒙版遮擋。點(diǎn)擊灰色蒙版,退回父控制器。把 UISearchController 的hidesNavigationBarDuringPresentation屬性設(shè)置為false,則導(dǎo)航欄不隱藏。把 UISearchController 的dimsBackgroundDuringPresentation屬性設(shè)置為false,則灰色蒙版不顯示,能點(diǎn)擊父控制器。

搜索框?yàn)榭諘r(shí),子控制器隱藏

如果 UISearchController 的searchBar已經(jīng)放置在父控制器上,用戶(hù)點(diǎn)擊搜索框時(shí),UISearchBar 會(huì)上移至屏幕頂部,鍵盤(pán)彈出。此時(shí)會(huì)調(diào)用updateSearchResults(for searchController: UISearchController)方法,但子控制的view沒(méi)有出現(xiàn),isHidden為 true。輸入內(nèi)容后,子控制器的view才出現(xiàn)。清空輸入的內(nèi)容,子控制器的view消失。如果要在搜索框?yàn)榭諘r(shí)也顯示子控制器,在updateSearchResults(for searchController: UISearchController)方法中加入searchController.searchResultsController?.view.isHidden = false即可。

代碼展示 UISearchBar 和子控制器的方法

在父控制中可以用代碼來(lái)展示 UISearchBar 和子控制器,具體實(shí)現(xiàn)方法要看 UISearchController 的searchBar是否放置在父控制器上。

如果 UISearchController 的searchBar放置在父控制器上

UISearchBar 上移,彈出鍵盤(pán)(和用戶(hù)點(diǎn)擊搜索框一樣的效果)

searchController.searchBar.becomeFirstResponder()

UISearchBar 上移,但不彈出鍵盤(pán)

present(searchController, animated: true, completion: nil)

或者

searchController.isActive = true

如果 UISearchController 的searchBar不在父控制器上

UISearchBar 從頂部出現(xiàn),彈出鍵盤(pán)

present(searchController, animated: true, completion: nil)

看完上述內(nèi)容,你們對(duì)UISearchController怎么在iOS 中使用有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝大家的支持。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線(xiàn),公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿(mǎn)足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。


名稱(chēng)欄目:UISearchController怎么在iOS中使用-創(chuàng)新互聯(lián)
標(biāo)題URL:http://weahome.cn/article/ddoged.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部