tableViewCell 上的 ImageView 没有出现?

发布于 2024-12-07 11:08:37 字数 274 浏览 0 评论 0原文

我有一个 tableView,您可以添加单元格。它不会在新添加的单元格的左侧显示我的图像。我使用默认的单元格样式,这是我的代码: 这是允许我们添加单元格的按钮。

- (IBAction)outlet1:(id)sender {
[cart.cells addObject:@"1"];
cart.cell.imageView.image = [UIImage imageNamed:@"paddle1.png"];
}

请帮忙!我检查了图像的名称,看起来不错。谢谢!

I have a tableView and you can add cells. and it doesnt show my image on the left hand side of the newly added cells. I'm using the default cell style and here is my code:
This is the button that allows us to add a cell.

- (IBAction)outlet1:(id)sender {
[cart.cells addObject:@"1"];
cart.cell.imageView.image = [UIImage imageNamed:@"paddle1.png"];
}

Please help! I checked the name of the image and it seems good. Thanks!

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

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

发布评论

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

评论(1

予囚 2024-12-14 11:08:37

最好将图像放置到 cellForRowAtIndexPath 方法内的 UITableViewCell 中,方法是将图像设置为 cell.imageView.image

It would be better to place the image to the UITableViewCell inside the cellForRowAtIndexPath method, by setting the image to cell.imageView.image

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