UITableView didSelectRowAt 没有注册
Posted
技术标签:
【中文标题】UITableView didSelectRowAt 没有注册【英文标题】:UITableView didSelectRowAt does not register 【发布时间】:2017-02-19 01:51:21 【问题描述】:我在ViewController
中有一个自定义UITableView
。我的自定义表有自定义UITableViewCells
。这是我ViewController
里面的代码:
ViewDidLoad
:
self.firstListTable.dataSource = self
self.firstListTable.delegate = self
self.firstListTable.register(UINib(nibName: "firstQueueCell", bundle: Bundle.main), forCellReuseIdentifier: "firstCell")
self.searchListTable.dataSource = self
self.searchListTable.delegate = self
self.searchListTable.allowsSelection = true
self.searchListTable.register(UINib(nibName: "SearchCell", bundle: Bundle.main), forCellReuseIdentifier: "SearchCell")
self.searchListTable.separatorStyle = .none
UITableViewFunctions
:
func tableView(_ tableView: UITableView, didHighlightRowAt indexPath: IndexPath)
if tableView == self.searchListTable
print("hello")
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
print("hello")
didHighlightRowAt
有效,但 didSelectRowAt
无效。
我试过这个: didSelectRowAtIndexPath: not being called
还有什么其他原因?
谢谢!
【问题讨论】:
看起来你的代码没有错误,你能把所有的代码都贴出来让我们看看是不是其他地方出错了? @user82395214,检查了您的代码。它没有错。两人都在回应。您能否将didSelectRowAt
方法的 print
语句从 print("hello")
更改为不同的内容并再次检查?
【参考方案1】:
如果你想要didHighlightRowAt
和didSelectRowAt
都响应,你可以像这样覆盖你的方法didHighlightRowAt
:
func tableView(_ tableView: UITableView, didHighlightRowAt indexPath: IndexPath)
if tableView == self.searchListTable
print("hello")
// this is my OC code ,change it to your swift code
[tableView selectRowAtIndexPath:IndexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
你可以理解为didHighlightRowAt
方法和didSelectRowAt
方法有冲突,如果你想要两个方法都响应,你必须做一些特殊的处理。
【讨论】:
哦,抱歉,不,我想说我的didHighlight
有效,但didSelect
无效。我不希望用户必须持有一个单元格才能与之交互。
我知道你想要什么,但如果像你的代码一样覆盖这两种方法,didSelectRowAt
很难响应。用户必须点击很长时间才能调用didSelectRowAt
。
你能告诉我你想要在didHighlightRowAt
中付出的真正努力吗?我建议您将代码放在didSelectRowAt
方法中。以上是关于UITableView didSelectRowAt 没有注册的主要内容,如果未能解决你的问题,请参考以下文章
将数据从 didSelectRowAtIndexPath 传递到另一个视图控制器 ios7