tableView不会显示包含搜索结果的单元格。搜索工作正常,我验证了所有数据,但是当我将cell.localName?.text分配给值时,它总是为零。不确定有什么问题。我在Objective-C中找到了另一个同样问题的帖子,答案是我需要使用真实tableView中的单元格,通过在出列单元格时添加self.tableView,但它对我不起作用。有什么建议吗?
这是我的代码:
class SearchResultsController: UITableViewController, UISearchResultsUpdating {
var localNames: [String] = []
var filteredNames: [String] = []
override func viewDidLoad() {
super.viewDidLoad()
tableView.registerClass(localCell.self, forCellReuseIdentifier: "localCell")
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func updateSearchResultsForSearchController(searchController: UISearchController) {
let searchedString = searchController.searchBar.text
filteredNames.removeAll(keepCapacity: true)
if !searchedString.isEmpty {
let filter: String -> Bool = {name in
let range = name.rangeOfString(searchedString, options: NSStringCompareOptions.CaseInsensitiveSearch)
return range != nil
}
let matches = localNames.filter(filter)
filteredNames += matches
}
tableView.reloadData()
}
// MARK: - Table view data source
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete method implementation.
// Return the number of rows in the section.
return filteredNames.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: localCell = self.tableView.dequeueReusableCellWithIdentifier("localCell") as localCell
cell.localName?.text = filteredNames[indexPath.row]
println(cell.localName?.text)
cell.localAddress?.text = "text"
cell.scheduleData?.text = "text"
cell.salaData?.text = "text"
cell.wifiData?.text = "text"
return cell
}
答案 0 :(得分:1)
如果您的手机正在返回nil
,请在dequeueReusableCellWithIdentifier
来电后使用以下内容自行创建一个:
if(cell == nil){
cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "localCell")
}
此外,如果您使用的是UISearchController,则应使用2个不同的数组来填充UITableView,而不是操作相同的数组。
您可以通过检查搜索控制器是否在tableView委托方法中处于活动状态并采取相应措施来执行此操作。
答案 1 :(得分:1)
好的,所以我找到了解决方案并发布,以防其他人遇到与我相同的问题。我正在使用故事板中原型单元格中的自定义单元格。 resultController创建一个新的tableView,它对自定义单元格一无所知,这就是为什么它总是返回nil。为了解决这个问题,我引用了第一个使用的tableView而不是新的tableView,或者从真实表中获取单元格,这样我的自定义单元格就被识别了。