需要帮助设置 UITableViewCell 的背景图像
我正在为 UITableViewCell 使用背景图像。
如果我只是设置单元格的背景,但保持其他所有内容相同,我会得到:
I如果我在 viewDidLoad 中使用此代码并且它修复了单元格,但它使导航栏透明:
self.navigationController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]];
self.tableView.backgroundColor = [UIColor clearColor];
有没有办法得到导航栏返回并使单元格看起来正常?
I'm using a background image for my UITableViewCell.
If I just set the background of the cell, but keep everything else the same, I get this:
I'm if I use this code in viewDidLoad and it fixes the cell but it is making the navbar transparent:
self.navigationController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]];
self.tableView.backgroundColor = [UIColor clearColor];
Is there way to get the navbar back and get the cell looking normal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在大多数情况下,我不认为
UIPopovers
就背景而言有很多视觉选项。For the most part, I don't believe
UIPopovers
have many visual options as far as background.