Accessing View in awakeFromNib?

Posted by fuzzygoat on Stack Overflow See other posts from Stack Overflow or by fuzzygoat
Published on 2010-04-27T16:31:51Z Indexed on 2010/04/27 16:33 UTC
Read the original article Hit count: 295

Filed under:
|
|

I have been trying to set a UIImageView background color (see below) in awakeFromNib

[imageView setBackgroundColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:1.0]];

When it did not work, I realised that its probably because the view has not loaded yet and I should move the color change to viewDidLoad.

Can I just verify that I have this right?

gary

© Stack Overflow or respective owner

Related posts about iphone

Related posts about cocoa-touch