gpt4 book ai didi

iphone - 继续在 UITableView 的 "bounce area"中交替行颜色

转载 作者:行者123 更新时间:2023-12-03 20:15:36 25 4
gpt4 key购买 nike

在 iPhone 上的 Weather.app 中,滚动超过每小时表格 View 的边界会继续显示交替的表格单元格,只是其中没有任何文本(见下图)。我想知道如何复制这种外观。 This question提供了一个解决方案,但我希望有一种更有效的方法,而不是在表格 View 上方添加空白单元格的图像。

谢谢

enter image description here

最佳答案

您可以使用 UITableView 的 headerViewfooterView 属性。这些允许您指定将放置在内容单元格之前和之后的自定义 UIView。

因此,您应该使用一些具有交替颜色的虚拟内部 View 来初始化 UIView。此 UIView 的高度应等于 tableView.frame.size.height。然后就这样做:


tableView.headerView = headerViewWithFakeColors;
tableView.footerView = footerViewWithFakeColors;

此外,您还需要更改 contentInset 属性,以便这些假页眉和页脚 View 仅在用户弹跳时可见(使用 contentInset 您可以控制 tableview 开始弹跳的点)


tableView.contentInset = UIEdgeInsetsMake(headerViewWithFakeColors.frame.size.height, 0, -footerViewWithFakeColors.frame.size.height, 0);

关于iphone - 继续在 UITableView 的 "bounce area"中交替行颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8771504/

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