tableViewCell 上的 ImageView 没有出现?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好将图像放置到 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