iPad 上的 UITableView 背景颜色始终为灰色
当我为 UITableView
设置 backgroundColor
时,它在 iPhone(设备和模拟器)上运行良好,但在 iPad 模拟器上则不行。相反,我设置的任何颜色(包括groupTableViewBackgroundColor
)都会获得浅灰色背景。
重现步骤:
- 创建一个新的基于导航的项目。
- 打开 RootViewController.xib 并将表格视图样式设置为“分组”。
- 将此响应程序添加到 RootViewController:
- (void)viewDidLoad { [超级viewDidLoad]; self.view.backgroundColor = [UIColor blackColor]; }
- 选择 Simulator SDK 3.2,构建并运行。
- 您将获得黑色背景(设备和模拟器)。
- 在项目树中选择您的目标。
- 单击项目:升级 iPad 的当前目标。
- 构建并运行。
- 您将得到浅灰色背景。
- 将表格视图样式恢复为普通,您将获得黑色背景。
感谢您的帮助!
When I set the backgroundColor
for my UITableView
it works fine on iPhone (device and simulator) but NOT on the iPad simulator. Instead I get a light gray background for any color I set including groupTableViewBackgroundColor
.
Steps to reproduce:
- Create a new navigation-based project.
- Open RootViewController.xib and set the table view style to "Grouped".
- Add this responder to the RootViewController:
- (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor blackColor]; }
- Select Simulator SDK 3.2, build and run.
- You will get a black background (device and simulator).
- Select your target in the project tree.
- Click on Project : Upgrade Current Target for iPad.
- Build and run.
- You will get a light gray background.
- Revert the table view style to Plain and you will get a black background.
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
如果要将 UIViewController 添加到另一个 UIViewController,除了 UITableView 之外,还需要将视图的背景设置为clearColor,否则您将得到白色背景而不是浅灰色。
If you are adding a UIViewController to another UIViewController you also need to set your view's background to clearColor in addition to UITableView or else you will get a white background instead of light grey.
以上都不适用于使用单个 XIB 指定的 UIViewController->UITableView。有效的方法是将整个设置移动到故事板中,并使用 IB 检查器设置背景颜色。
None of the above worked for my UIViewController->UITableView specified using a single XIB. What did work was moving the whole setup into a Storyboard, and setting the background color using the IB inspector.
我也遇到这样的问题。无论我设置什么,
UITableView
背景颜色将始终为groupTableViewBackgroundColor
。症状就像这个问题 - UITableView 之前正在重置其背景颜色view出现
我在
init
函数中设置背景颜色后,它是正确的。在viewDidLoad
和viewWillAppear
阶段,它是正确的。然而,在viewDidAppear
中,背景颜色被重置为其默认颜色。接受的答案现在不起作用。
这是我的解决方案。 只需在
viewDidLoad
函数中设置tableView的背景颜色,而不是在init
或viewWillAppear
中设置。I also got this kind of problem. The
UITableView
background color will be alwaysgroupTableViewBackgroundColor
no matter what I set.The symptom is like this issue - UITableView is resetting its background color before view appears
After I set the background color in
init
function, it is correct. InviewDidLoad
andviewWillAppear
stage, it is correct. However, inviewDidAppear
, the background color is reset to its default color.The accepted answer does not work now.
Here is my solution. Just set the tableView's background color in
viewDidLoad
function rather thaninit
orviewWillAppear
.尝试其中之一。
Try one of these.
非常感谢这个解决方案。
我将其应用到 UIViewController 中带有 IBOutlet 的 UITableView 属性上,效果很好,如下所示:
Thanks a lot for this solution.
I applied this on a UITableView property with IBOutlet in a UIViewController and it works well like:
在 iPad 上,
backgroundView
属性似乎用于为分组表格创建灰色背景颜色。因此,要更改 iPad 上分组表格的背景颜色,应将backgroundView
属性nil
,然后在所需的表格视图上设置backgroundColor
。On iPad the
backgroundView
property seems to be used to create the gray background color for grouped tables. So for changing the background color for grouped tables on iPad one shouldnil
out thebackgroundView
property and then set thebackgroundColor
on the desired table view.我认为值得注意的是,从 Xcode 6.1 和 iOS 8.1 开始,特别是对于 iPad(如果您也想设置单元格背景),似乎您必须设置表格背景和单元格背景。
例如,在 iPhone 故事板上,您可以将单元格设置为透明颜色,然后以编程方式设置表格的背景图像,以获得带有背景图像的透明表格。但是,如果您要在 iPad 上查看相同的配置,则单元格将不清晰。对于 iPad,需要将单元格设置为以编程方式清除。
I think it is worth noting that as of Xcode 6.1 and iOS 8.1, specifically for iPad (if you want to set cell background as well) it seems that you must set table background AND cell background.
For instance, on an iPhone storyboard you can set a cell to clear color, then set background image of table programmatically for a transparent table with background image. However if you were to view this same configuration on iPad the cells would not be clear. Cells will need to be set to clear programmatically for iPad.
尝试设置表格的backgroundColor和View,但没有运气(Xcode 5 iOS7.1 iPad模拟器),对于iPhone来说看起来不错,但是iPad上的浅灰色背景颜色...
使用单元格本身的backgroundColor在iOS上为我修复了这个问题7.1 4/2014
}
tried setting backgroundColor and View for the table, had no luck (Xcode 5 iOS7.1 iPad simulator), looked OK for iPhone, but light grey background color on iPad...
working with backgroundColor for the cell itself fixed this for me on iOS 7.1 4/2014
}
如果您的应用程序同时面向 iPhone 和 iPad,您可以这样做:
请注意,TableView 分配没有 ARC 的自动释放功能。
If your application targets both iPhone and iPad you can do it like this:
Notice that the TableView alloc doesn't have autorelease for ARC.