Changing background color on UIScrollView?
Posted
by
Andreas Johannessen
on Stack Overflow
See other posts from Stack Overflow
or by Andreas Johannessen
Published on 2011-01-02T16:42:18Z
Indexed on
2011/01/02
21:53 UTC
Read the original article
Hit count: 266
iphone
Hi
How do I change the black/gray color to white?
This is just a simple view with a UIView attached to the UIViewControllers property together a with a webview that fills the UIView.
UPDATE
Here's the code that works:
- (void)loadView {
UIWebView *webview = [[UIWebView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 416.0f)];
[webView setBackgroundColor:[UIColor whiteColor]];
self.view = webView;
[webview release];
}
Thanks in advance.
© Stack Overflow or respective owner