gpt4 book ai didi

objective-c - 以编程方式选择行时未触发 didSelectRowAtIndexPath 事件

转载 作者:太空狗 更新时间:2023-10-30 03:23:06 27 4
gpt4 key购买 nike

我想在 tableView 中选择一个单元格。它使用此代码可以正常工作,但一旦以编程方式选择,它就不会触发 didSelectRowAtIndexPath 事件。我怎样才能触发它?

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.mainTable selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];

最佳答案

它按照记录工作:

Calling this method does not cause the delegate to receive a tableView:willSelectRowAtIndexPath: or tableView:didSelectRowAtIndexPath: message, nor will it send UITableViewSelectionDidChangeNotification notifications to observers.

选择单元格后自己调用:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];

[self tableView:self.mainTable willSelectRowAtIndexPath:indexPath];
[self.mainTable selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
[self tableView:self.mainTable didSelectRowAtIndexPath:indexPath];

关于objective-c - 以编程方式选择行时未触发 didSelectRowAtIndexPath 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8705806/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com