gpt4 book ai didi

iphone - UITableView 部分背景?

转载 作者:技术小花猫 更新时间:2023-10-29 11:23:54 27 4
gpt4 key购买 nike

是否可以在 UITableView 的某个部分后面使用背景图像?

我想不出如何实现这一目标。

最佳答案

你可以在你的 TableView 后面放置一个 View ,设置 TableView 的背景色为[UIColor clearColor],你会看到后面的 View

[self.view addSubview:self.sectionBackgroundView];
[self.view addSubview:self.tableView];
self.tableView.backgroundColor = [UIColor clearColor];

这样做的缺点是,这不仅限于您想要的部分,我能想到的一种方法是将背景 View 的框架调整为滚动 TableView 时该部分覆盖的区域

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
CGRect sectionFrame = [self.tableView rectForSection:sectionWithBackground];
self.sectionBackgroundView.frame = sectionFrame;
}

您将需要在开始时执行此操作(可能在 viewWillAppear: 中)以及确保 View 正确启动。

关于iphone - UITableView 部分背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11710305/

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