Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an UIWebView with and using QuartzCore to add some style to this. But when i'm execute:

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(10, 10, self.view.bounds.size.width-20.0, self.view.bounds.size.height-30.0)];

NSString *urlAddress = @"http://www.google.com/";
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];

webView.layer.cornerRadius = 10;
webView.layer.borderColor = [UIColor whiteColor].CGColor;
webView.layer.borderWidth = 3.0f;
[self.view addSubview:webView];

I get an rounder View but content is sharp. There is a way to roundend corners in content in WebView enter image description here

share|improve this question

2 Answers

up vote 1 down vote accepted

The content view is actually the scrollView of UIWebView, so

webView.scrollView.layer.cornerRadius = 10;
share|improve this answer
1  
Works, great! And clear the problem for me! Thanks graver – SimpleMan May 22 '12 at 10:13

Agreed with @graver Answer but not completely Coz His working will not work on iphone 3g and iPod 2nd generation .

webView.layer.cornerRadius = 10;
[webView setClipsToBounds:YES];

ClipsToBound will simple resize all the subviews under webView.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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