gpt4 book ai didi

iphone - 如何锁定 UITable 以防止滚动超出表中的项目

转载 作者:行者123 更新时间:2023-11-28 20:25:02 25 4
gpt4 key购买 nike

我有一个 UITableView 向上滚动太远,以至于 UITableView 中的项目列表向上滚动,然后它后面有大量空白。

如何阻止 UITableView 滚动额外的空间?

希望我描述得足够好。

最佳答案

我认为这可能对您有用。在表上调用 reloadData 后运行此代码:

if (table.contentSize.height < table.frame.size.height) 
{
table.scrollEnabled = NO;
}
else
{
table.scrollEnabled = YES;
}

这里,table.frame.size.height 是显示在屏幕上的对象的实际大小(您可以在 Interface Builder 中看到),而 table.contentSize.height页眉页脚每个单元格 的高度相加的高度。

我在这里找到它:How to disable scrolling in UITableView table when the content fits on the screen

希望你也能从他们给出的答案中有所收获。

关于iphone - 如何锁定 UITable 以防止滚动超出表中的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14338367/

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