在表视图上插入图像?
如何在简单的表格视图上插入图像?我有一个表格视图,但如果我像这样插入:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要设置TableViewController的背景,您可以在
viewDidLoad
方法中使用以下代码:如果您尝试在单元格中设置图像本身您可以在
tableView:cellForRowAtIndexPath:
方法中使用此代码To set the background of a TableViewController you can use this code in the
viewDidLoad
method:If you are trying to set an image in the cell itself you can use this code in your
tableView:cellForRowAtIndexPath:
method