将 SearchBar 添加到 uitableview 在过滤过程中遇到错误
Posted
技术标签:
【中文标题】将 SearchBar 添加到 uitableview 在过滤过程中遇到错误【英文标题】:Add A SearchBar to a uitableview confronts an error in filter process 【发布时间】:2019-10-01 11:11:16 【问题描述】:我正在关注一个关于如何为我的 swift 项目添加 ui 表视图的搜索栏的教程,我点击了这个链接,https://www.youtube.com/watch?v=XtiamBbL5QU,我被困在了一半的代码中。在我项目的这一行
self.countries.filter (Country:String) -> Bool in
<#code#>
我有这个错误
String' is not convertible to 'HistoryViewController.Country
HistoryViewController 是我的表视图控制器的名称。在我的教程项目中唯一不同的是我有一个名为 Country 的数组,其中包含多行字典。我将在这里发布我的其他部分代码
import UIKit
class HistoryViewController: UITableViewController , UISearchResultsUpdating
var searchController : UISearchController!
var resultsController = UITableViewController()
var myPlistArray: [String] = []
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat
return 115 //or whatever you need
struct Country : Decodable
let flagEmoji, Abb, countryName, pName : String
private enum CointryKeys : String, CodingKey case flagEmoji, Abb, countryName, pName
var countries = [Country]()
func updateSearchResults(for searchController: UISearchController)
//Filter through currencies
self.countries.filter (Country:String) -> Bool in
<#code#>
// Update the results Table View
override func viewDidLoad()
super.viewDidLoad()
self.searchController = UISearchController(searchResultsController: self.resultsController)
self.tableView.tableHeaderView = self.searchController.searchBar
self.searchController.searchResultsUpdater = self
let url = Bundle.main.url(forResource: "Curr", withExtension: "plist")!
let data = try! Data(contentsOf: url)
do
countries = try PropertyListDecoder().decode([Country].self, from: data)
catch
// Handle error
print(error)
print(countries)
print("countries.count:", countries.count)
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int
// #warning Incomplete implementation, return the number of sections
return 1
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
// #warning Incomplete implementation, return the number of rows
return countries.count
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
print("hiiii")
let cell = tableView.dequeueReusableCell(withIdentifier: "historyCell", for: indexPath) as! TableViewCellforHistory
// Configure the cell...
cell.lblCellHistory.text = countries[indexPath.row].countryName
cell.lblEmoji.text = countries[indexPath.row].flagEmoji
cell.lblCurrencyName.text = countries[indexPath.row].pName
return cell
【问题讨论】:
【参考方案1】:如下更改filter
闭包,因为countries
是Country
的数组,但您将其视为String
(通过执行Country: String
),
self.countries.filter country -> Bool in
return country.countryName == "Pakistan"
或
self.countries.filter (country: Country) -> Bool in
return country.countryName == "Pakistan"
或者简单地说,
self.countries.filter $0.countryName == "Pakistan"
编辑
要获取国家/地区列表names
(即[String]
),您必须在过滤结果上使用map
,如下所示,
let filteredCountryNames = self.countries.filter (country: Country) -> Bool in
return country.countryName == "Pakistan"
.map $0.countryName
【讨论】:
谢谢。似乎它有效,但让我检查一下。非常非常感谢 我会推荐使用country.countryName.contains(searchTerm)
它似乎工作正常,但我发现了一个新错误,我现在定义了一个这样的数组var filteredCountries = [String]()
,然后我像这样分配self.filteredCountries = self.countries.filter (Country) -> Bool in return true
,再次出现错误Cannot assign value of type '[HistoryViewController.Country]' to type '[String]'
跨度>
你知道如何解决它或者我应该为此提出一个新问题吗?
@Kamran Kamran 先生,非常感谢您的关心。它现在解决了。非常感谢,我找到了解决方案。但我很乐意就进一步的项目与您保持联系。【参考方案2】:
您没有字典,但有一系列国家/地区,因此您的过滤器关闭应该看起来像这样
let result = countries.filter $0.countryName.starts(with: searchStr)
或
let result = countries.filter $0.countryName == searchStr)
取决于您要如何过滤。如果您想让搜索不区分大小写,请为属性和搜索字符串调用lowercased()
let result = countries.filter $0.countryName.lowercased().starts(with: searchStr.lowercased())
【讨论】:
底线不起作用,将Country
与String
进行比较以上是关于将 SearchBar 添加到 uitableview 在过滤过程中遇到错误的主要内容,如果未能解决你的问题,请参考以下文章
将 SearchBar 添加到 uitableview 在过滤过程中遇到错误