Set background of UITableview in interface builder?

Posted by Martin on Stack Overflow See other posts from Stack Overflow or by Martin
Published on 2010-05-18T20:36:34Z Indexed on 2010/05/18 20:40 UTC
Read the original article Hit count: 199

Filed under:
|
|

In iPhone I need to set the background view of a UITableview. From 3.2 SDK I can in code use something like:

[self.tableView setBackgroundView:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"mycustombackground.png"]]];

But how can I do the same in interface builder? It would be great if I could just set the background view directly in interface builder. But can't seem to find this property, where is it?

Thanks!

© Stack Overflow or respective owner

Related posts about iphone

Related posts about uitableview