在表格视图上插入图像?

时间:2011-03-11 13:15:39

标签: iphone objective-c ios uitableview uiimage

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

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

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

感谢您的关注!

1 个答案:

答案 0 :(得分:2)

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