我有什么方法可以在UI视图上设置边框颜色吗?
我试过这个,但它不起作用:
newView.backgroundColor = UIColor.clearColor()
newView.layer.cornerRadius = 2
newView.layer.borderWidth = 1
newView.layer.borderColor = UIColor.redColor().CGColor
答案 0 :(得分:0)
实际上现在这已经成功了:
newView.layer.borderColor = UIColor.redColor().CGColor
newView.layer.cornerRadius = 5
newView.layer.borderWidth = 2