如何将重复背景图像设置为 UITableCell
当我使用以下代码将重复背景图像设置为 UITableView 时可以:
tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png"]];
但是当我使用它通过以下代码将重复背景图像设置为 UITableViewCell 时,没有任何反应,我不知道为什么,我也无法设置背景也给这个单元格上色。
cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png"]];
有谁知道这样的方法吗?请帮我!
When I set repeating background image to a UITableView by using the following code is ok:
tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png"]];
but when I use it to set repeating-background image to a UITableViewCell by following code, nothing happen, I don't know why, I also cannot set background color to this cell too.
cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png"]];
Is there anyone know the way to so this? please help me!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将进入此代码块:
您还可以看到如何在其中设置选定的图像:selectedBackgroundView。
我不确定是否要重复,但我很确定backgroundView 可以设置contentMode。
which would go inside this code block:
You can also see how to set the selected image in inside there too: selectedBackgroundView.
I'm unsure about repeating, but I'm pretty sure backgroundView can have contentMode set on it.
哦,这比我想象的要容易。我只需要通过以下代码设置背景图像:
整个单元格背景视图将自动填充此背景图像。 :)
Oh, it is more easier than I think. I just need to set background image by following code:
and the whole cell background view is automatically filled with this background image. :)