gpt4 book ai didi

ios - 在 UITableView 中选择第一行作为默认值

转载 作者:IT王子 更新时间:2023-10-29 07:35:42 40 4
gpt4 key购买 nike

我有一个基于 View 的应用程序,我正在将一个 TableView 作为 subview 添加到主视图。我已经采用 UITableViewDelegate 来响应表方法。一切正常,但我想选择第一行或 UITableView 作为默认选择(突出显示)。

请帮助我,我需要什么代码以及我需要把它放在哪里。

最佳答案

- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:0];
[myTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionBottom];
}

在你的代码中使用这个的最好方法,如果你想默认选择任何行,在 viewDidAppear 中使用。

关于ios - 在 UITableView 中选择第一行作为默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2728152/

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