我希望在我的textview周围有边框;为此,我做了以下事情:
textView.layer.borderWidth = 5.0f;
textView.layer.borderColor = [UIColor grayColor];
我收到以下警告:
warning: passing argument 1 of 'setBorderColor:' from incompatible pointer type
Update1:我的边框不可见
答案 0 :(得分:19)
您的问题是-[CALayer setBorderColor:]
采用CGColorRef
类型的对象。您需要做的是将颜色对象转换为符合:
textView.layer.borderColor = [UIColor grayColor].CGColor;
我希望有所帮助!