系統 : Swift 3.0
請問一下各位大大, 我想做出圓角進度條的bar
以下是圓角的code
let myProgressView = UIProgressView(progressViewStyle: .bar)
myProgressView.frame = CGRect(x: 0, y: 0, width: ScreenSize.width * 0.8,
height: 80)
myProgressView.center = CGPoint(x: ScreenSize.width * 0.5,
y: ScreenSize.height * 0.2)
// 設定bar的高度
myProgressView.transform = CGAffineTransform(scaleX: 1, y: 15)
// 圓角
myProgressView.layer.cornerRadius = myProgressView.frame.height / 2.0
myProgressView.clipsToBounds = true
myProgressView.layer.masksToBounds = true
實作圓角效果 : ppt.cc/rdchE
不過圓角的效果不好耶(好像三角形), 不是很圓滑
因為是進度條, 想要有圓滑一點的效果, 我也有調整cornerRadius也是不佳
不知哪邊出了問題 非常謝謝