Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- NumberFormatter
- Failed to register bundle identifier
- Codegen
- SWIFTUI
- mvvm
- 야곰아카데미
- 독서후기
- Navigation
- @available
- 스위프트
- NotificationCenter
- View Life Cycle
- 독후감
- Info.plist
- human interface guidelines
- viewcontroller
- 책후기
- SWIFT
- 스타트업주니어로살아남기
- contentInset
- xcode
- 부트캠프
- roundingMode
- IOS
- delegation
- UIResponder
- Modality
- Mock
- Structures and Classes
- 아이폰
Archives
- Today
- Total
호댕의 iOS 개발
[iOS] 특정 모서리만 둥글게 처리하는 방법 (layer.maskedCorners) 본문
일단 기존 4개의 꼭지점 모두 둥글게 일괄적으로 처리하려면 layer.cornerRadius를 주면 된다. 그리고 clipsToBounds를 true로 주면 모든 꼭지점을 둥글게 처리할 수 있다.
하지만 이렇게만 하면 특정 모서리만 둥글게 처리를 할 수 없다.
그럼 위 사진처럼 위 모서리만 둥글게 처리하려면 어떻게 해야할까?
이때 쓸 수 있는 것이 바로 layer.maskedCorners이다.
이는 CACornerMask의 배열로 되어 있으며 CACornerMask는 구조체로 타입 프로퍼티로 각각의 꼭지점이 선언되어 있다.
둥글게 하고 싶은 꼭지점을 layer.maskedCorners에 배열 형태로 할당해주면 된다.
따라서 만약 위 이미지처럼 위쪽만 둥글게 하고 싶은 경우
$0.layer.maskedCorners = [.layerMinXMinYCorner, .layerMaxXMinYCorner]
이렇게 주면 된다.
참고자료
-
'Software Engineering > iOS' 카테고리의 다른 글
[iOS] 푸쉬 알림(Push Notification) 어떻게 할까? (OneSignal, FCM, Foreground에서 알림 받지 않기 등등) (0) | 2022.09.29 |
---|---|
[Xcode] Developer Mode(개발자 모드)가 필요합니다...? (0) | 2022.09.19 |
[Xcode] Skipping duplicate build file in Compile Sources build phase (0) | 2022.08.29 |
[iOS] TableView에서 Cell보다 Separator들이 많이 뜬다... (0) | 2022.08.17 |
[iOS] 커스텀 폰트를 적용해보자 (0) | 2022.08.10 |
Comments