gpt4 book ai didi

ios - Tableview 首先隐藏这些部分?

转载 作者:行者123 更新时间:2023-11-29 00:53:17 24 4
gpt4 key购买 nike

我有一个应用程序,其中使用 10 个表格 View 部分。但是我需要先将表格 View 的第五部分放在顶部。然后当用户向下滚动时,我只需要加载前 4 个部分。任何人都可以指导吗我在 iOS 中对此感兴趣吗?我使用的是普通的 tableview。我尝试过

[table reloaddata]
dispatch_async(dispatch_get_main_queue(), ^{
NSIndexPath *rowIndexPath = [NSIndexPath indexPathForRow:1 inSection:3];
[self.table scrollToRowAtIndexPath:rowIndexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
});

但它只会到第 1 部分的第 1 行,而不是到第 3 部分。

最佳答案

您可以通过这种方式在 tableview 的顶部设置特定的部分:

[tableview scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:4] atScrollPosition:UITableViewScrollPositionTop animated:NO];

试试这个代码,它可能对你有帮助。

关于ios - Tableview 首先隐藏这些部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37874846/

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