gpt4 book ai didi

iphone - 将第一个单元格设置为在 View 加载时突出显示

转载 作者:行者123 更新时间:2023-12-03 21:18:27 26 4
gpt4 key购买 nike

我有一个 UISplitViewController。当应用程序最初启动时,详细信息 View 将显示第一行的详细数据。但是,表中的单元格未突出显示,因为尚未选择它。如何在应用程序首次加载时将其设置为默认选择?

我将其添加到 cellForRowAtIndexPath 但它没有突出显示。当我实际选择一个单元格时,它会突出显示。

if (indexPath.row == 0)
{
cell.selected = YES;
}

最佳答案

-(void)selectFirstRow {
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
// optional:
// [self tableView:myTable willSelectRowAtIndexPath:indexPath];
[myTable selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionTop];
// optional:
// [self tableView:myTable didSelectRowAtIndexPath:indexPath];
}

然后在任何需要的地方调用[self selectFirstRow];

关于iphone - 将第一个单元格设置为在 View 加载时突出显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7642022/

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