vote up 0 vote down star

Hi all!

I've just created a new view based application, and now I want to set the background color at the application startup rather then in IB. I have found this code in a tutorial:

UIView *view = [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
[view setBackgroundColor:[UIColor greenColor]];

But my view is still white.

How do I make it work?

Thanks in advance.

flag

1 Answer

vote up 1 vote down check

This should work. Are you adding the view to the window using addSubView ?

link|flag
Thanks, I added the code to the appDidFinishLaunching method with viewController.view setBackgroundCollor.... etc... – Koning Baard XIV Sep 7 at 11:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.