Round
-
round only specific cornersiOS 2019. 12. 6. 10:18
특정 부분만 둥글게 만들어 주고 싶은 경우가 있습니다. 이전에는 UIBezierPath를 이용해 그리는 방법을 사용했었는데 아주 간단한 방법으로 설정해 줄 수 있는 방법을 찾아 소개해드리려 합니다. round 처리를 하는 방법은 다들 아시리라 생각합니다. let roundView = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) roundView.layer.cornerRadius = 25 let roundView = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) roundView.layer.cornerRadius = 25 layer의 cornerRadius 프로퍼티를 사용하면 되는데요. ..