iOS小技巧-UITextFiled/UITextView设置系统圆角边框

iOS中单行输入一般使用UITextField,而多行输入一般使用UITextView,但是,UITextField设置圆角边框可以使用

textField.borderStyle = UITextBorderStyleRoundedRect;

直接进行设置,而UITextView却没有提供类似的方法,所以可以通过layer做出类似的边框样式效果。

textView.layer.borderColor = [[UIColor colorWithRed:199/255.0 green:199/255.0 blue:199/255.0 alpha:1] CGColor];
textView.layer.borderWidth = 0.5f;
textView.layer.cornerRadius = 5.0f;
数据仅供参考,效果图如下:

iOS小技巧-UITextFiled/UITextView设置系统圆角边框_第1张图片

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