[iOS] @IBInspectable
2024. 1. 6. 15:10
class CustomView: UIView{
@IBInspectable var borderWidth: CGFloat {
get{
return layer.borderWidth
}
set{
layer.borderWidth = newValue
}
}
@IBInspectable var borderColor: UIColor?{
get{
return UIColor(cgColor: layer.borderColor!)
}
set{
layer.borderColor = newValue?.cgColor
}
}
}
Storyboard로 이동해서 UIView 생성 합니다.
출처
728x90
'iOS > UIKit' 카테고리의 다른 글
[iOS] UICollectionViewCompositionalLayout (0) | 2024.03.09 |
---|---|
[iOS] UIScrollView (1) | 2024.03.09 |
[iOS] 키보드 처리 (0) | 2023.12.30 |
[iOS] 기종별로(iPhone, iPad) StoryBoard 구분하기 (1) | 2023.12.30 |
[iOS] 한 개의 ViewController에서 여러 개의 tableView 처리 방법 (0) | 2023.06.17 |