How do I set the background image of my UIViewController? What is the code to do it? Right now I have
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.jpg"]];
but I don't want a pattern. I want it to fill the screen properly.
Thanks!