当UIView向下移动时设置视图的背景颜色

时间:2014-04-29 17:01:18

标签: objective-c ios6

我需要将我的UIView降低50分。 当我这样做时,顶部位置背景变黑,因为它在该部分没有任何视图。

Screenshot of how it looks

我希望黑色区域填充白色。

[self.navigationController pushViewController:stubController animated:YES];
    CGRect newFrame = self.navigationController.view.frame;
    newFrame.origin.y = 50;
    self.navigationController.view.frame= newFrame;

有人可以帮助我将背景设置为白色。

1 个答案:

答案 0 :(得分:1)

尝试在AppDelegate中设置窗口背景颜色,如下所示:

self.window.backgroundColor = [UIColor whiteColor];