반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
class CustomUIView: UIView {
override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
super.point(inside: point, with: event)
let touchArea = bounds.insetBy(dx: -20, dy: -20)
return touchArea.contains(point)
}
}
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] UIView 초기화 함수 (0) | 2022.10.08 |
---|---|
[iOS, Swift] Constraint를 통한 동적 높이 조절 (0) | 2022.10.08 |
[iOS, Swift] SegmentController 색상 변경 (0) | 2022.10.08 |
[iOS, Swift] UserDefaults 사용 예제 (0) | 2022.09.27 |
[iOS, Swift] View 애니메이션 추가(위아래 반복) (1) | 2022.09.20 |