在viewDidLoad中调用TableView:didSelectRow:AtIndexPath

发布于 2024-12-19 17:30:33 字数 350 浏览 0 评论 0原文

视图加载后,我必须在 UITableView 中选择一行。

所以我这样做了:

 [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionTop];

这工作正常并且该行被选择,但是我还希望调用 TableView:didSelectRow:AtIndexPath 方法,但目前情况并非如此。

有什么想法吗?

谢谢你!

I have to select a row in my UITableView after the view did load.

So I did:

 [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionTop];

This works fine and the row is selected, but I also want the TableView:didSelectRow:AtIndexPath method to be called which is not the case for now.

Any ideas?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

感悟人生的甜 2024-12-26 17:30:33

由于您知道要选择的行,因此您可以直接调用在 tableView:didSelectRowAtIndexPath 中调用的方法。或者您可以自己调用 tableView:didSelectRowAtIndexPath

NSIndexPath *initialIndex = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:initialIndex
                            animated:YES 
                      scrollPosition:UITableViewScrollPositionTop];
[self tableView:self.tableView didSelectRowAtIndexPath:initialIndex];

Since you know the row that you are selecting, you could simply call the method that gets called in tableView:didSelectRowAtIndexPath directly. Or you could call the tableView:didSelectRowAtIndexPath yourself:

NSIndexPath *initialIndex = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:initialIndex
                            animated:YES 
                      scrollPosition:UITableViewScrollPositionTop];
[self tableView:self.tableView didSelectRowAtIndexPath:initialIndex];
智商已欠费 2024-12-26 17:30:33

我知道这听起来很愚蠢,但为什么不自己称呼它呢?我在手动加载视图时遇到了同样的问题,然后我也必须手动调用 onLoad :)

[self tableView:self.tableView didSelectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];

不确定我的语法是否正确,但你明白了

I know it sounds stupid, but why not call it yourself? I've had the same issue with loading a view manually, and then I had to call onLoad manually as well :)

[self tableView:self.tableView didSelectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];

not sure I got the syntax right, but you get the point

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文