iOS - UITextView 边框的设置

// 导入QuartzCote框架:
#import 

// 设置边框:
textView.layer.borderColor = [UIColorgrayColor].CGColor;
textView.layer.borderWidth =1.0;
textView.layer.cornerRadius =5.0;



原文 : http://blog.sina.com.cn/s/blog_6799686801016itn.html

你可能感兴趣的:(iOS开发)