gpt4 book ai didi

ios - 如何在 iOS 中制作不可移动的背景?

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

在我的应用程序中,我有 UITableViewController,上面有表格。我用这种方式用图像填充背景:

UIImage* backgroundImage;
backgroundImage = [UIImage imageNamed:@"bg.png"];
self.view.backgroundColor = [UIColor colorWithPatternImage:backgroundImage];

但是,当用户滚动表格时,背景会随着所有其他 View Controller 组件移动。

是否有可能制作不可移动的背景,例如 HTML 背景?

谢谢。

最佳答案

尝试

UIColor *color= [[[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"Background.png"]] autorelease];
self.tableView.backgroundColor = color;

UIImageView *imageView= [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Background.png"]] autorelease];
imageView.frame = self.tableView.frame

self.tableView.backgroundView = imageView;

关于ios - 如何在 iOS 中制作不可移动的背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15991070/

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