gpt4 book ai didi

iphone - 在表格 View 中插入图像?

转载 作者:行者123 更新时间:2023-11-29 11:23:31 25 4
gpt4 key购买 nike

如何在简单的表格 View 中插入图像?我有一个表格 View ,但如果我这样插入:

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

我在图像开头的每个单元格中都看到了图像,这太可怕了!

感谢关注!

最佳答案

要设置 TableViewController 的背景,您可以在 viewDidLoad 方法中使用此代码:

self.parentViewController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]];
self.tableView.backgroundColor = [UIColor clearColor];

如果您尝试在单元格中设置图像本身,您可以在tableView:cellForRowAtIndexPath: 方法中使用此代码

cell.imageView.image = [UIImage imageNamed:@"image.png"];

关于iphone - 在表格 View 中插入图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5273335/

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