当前位置:  开发笔记 > Android > 正文

如何使用圆角矩形角进行webview?

如何解决《如何使用圆角矩形角进行webview?》经验,为你挑选了1个好方法。

我希望我的webview具有圆角矩形角.

有帮助吗?



1> luvieere..:

这是如何做:

//first, you
#import 

//.....

//In your method, where you add your UIWebView, do:
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(50, 220, 200, 100)];

//The rounded corner part:
webView.layer.cornerRadius = 5;
webView.clipsToBounds = YES;

//Load a web site:
[webView loadRequest: [NSURLRequest requestWithURL:
               [NSURL URLWithString:@"http://www.stackoverflow.com/"]]];

//yourView is the UIView's superview, might be the window, or anything you want
[yourView addSubview: webView];
[webView release];

这使用QuartzCore框架,它只适用于> = OS 3.0

推荐阅读
k78283381
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有