文章地址:http://www.cocoachina.com/bbs/read.php?tid-21300.html
加库再
#import <QuartzCore/QuartzCore.h>
textView=[[UITextView alloc] initWithFrame:CGRectMake(10, 10, 300, 100)];
_textView.font=[UIFont systemFontOfSize:14.0];
_textView.layer.cornerRadius=6;
_textView.layer.masksToBounds=YES;
_textView.delegate=self;
[self.view addSubview:_textView];
UIWebView* webView=[[UIWebView alloc] initWithFrame:CGRectMake(10, 120, 300, 100)];
webView.layer.cornerRadius=6;
webView.layer.masksToBounds=YES;
[self.view addSubview:webView];