-
[iOS|Swift] UIView 커스텀하기 (라운드)Swift 2022. 4. 22. 20:55728x90
UIView 라운드 생성하기
1. 모서리 라운드 크기 지정하기
// Declaration var cornerRadius: CGFloat { get set }
testUIView.layer.cornerRadius = 50
The default value of this property is
0.0
.2. 테두리 굵기 주기
// Declaration var borderWidth: CGFloat { get set }
testUIView.layer.borderWidth = 10
The default value of this property is 0.0.
3. 테두리 색상 지정하기
// Declaration var borderColor: CGColor? { get set }
testUIView.layer.borderColor = UIColor.systemPink.cgColor
The default value of this property is an opaque black color.
'Swift' 카테고리의 다른 글
[LanguageGuide] Structures and Classes (0) 2022.12.29 [iOS|Swift] storyboard 없이 코드로 UI 구현하기 (0) 2022.05.08 [iOS|Swift] UIView 커스텀하기 (그림자) (0) 2022.04.22 [iOS|Swift] UICollectionView Cell 크기 지정하기 (1) 2022.04.16 [Swift] Optional(옵셔널) (0) 2022.03.17