Я следую учебному пособию о том, как добавить панель поиска для табличного представления пользовательского интерфейса в свой быстрый проект, я перешел по этой ссылке https://www.youtube.com/watch?v=XtiamBbL5QU и застрял в половине кода. В этой строке моего проекта
self.countries.filter { (Country:String) -> Bool in
<#code#>
}
У меня есть эта ошибка String' is not convertible to 'HistoryViewController.Country
HistoryViewController - это имя моего контроллера табличного представления. и единственное, что отличается в моем проекте с учебником, это то, что у меня есть массив стран, в который входят строки словарей. Я собираюсь опубликовать мои другие части кодов здесь
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
}
}