UITextView加边框

来源:互联网 发布:wind如何查询行业数据 编辑:程序博客网 时间:2024/05/29 11:48
textView.layer.borderColor = UIColor(red: 228.0/255.0, green: 228.0/255.0, blue: 228.0/255.0, alpha: 1).CGColor;textView.layer.borderWidth = 1;textView.layer.cornerRadius = 5;
0 0