在表视图上插入图像?

发布于 2024-10-21 18:19:57 字数 217 浏览 1 评论 0原文

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

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

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

感谢您的关注!

How can I insert an image on simple tableview? I have an tableview but if I insert like this:

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

I see the image in every cell that isn't empty the start of the image, and this is horrible!

Thanks for the attention!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾冷 2024-10-28 18:19:57

要设置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"];

To set the background of a TableViewController you can use this code in the viewDidLoad method:

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

If you are trying to set an image in the cell itself you can use this code in your tableView:cellForRowAtIndexPath: method

cell.imageView.image = [UIImage imageNamed:@"image.png"];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文