How do I control the background color during the iPhone flip view animation transition?

强颜欢笑 提交于 2019-12-03 05:30:48
Mike

You could use a color or an image. You can add a view to do it:

UIWindow *window = [appDelegate window];
UIView *bgView = [[UIView alloc] init];
[bgView setBackgroundColor:[UIColor blackColor]];
[window addSubView:bgView];

Or set the background color on the window directly:

[[appDelegate window] setBackgroundColor:[UIColor blackColor]];

You can also set the background color on the Window in MainWindow.xib in IB if that's easier.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!