uitextview 等圆角设置

来源:互联网 发布:黑莓淘宝哪家店好 编辑:程序博客网 时间:2024/05/22 06:25

文章地址: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];


原创粉丝点击