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 |
Tags
- 웹뷰
- Realm
- iOS16
- FLUTTER
- SwiftUI
- view
- UIButton
- Firebase
- JPA
- github
- Apple
- window
- MacOS
- darkmode
- error
- Archive
- Python
- stack
- 한글
- IOS
- appstore
- rxswift
- Swift
- Session
- mac
- 개발자
- Git
- Notification
- Code
- Xcode
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Swift ) Cell에 그림자 + 둥글게 (shadow + corner radius) 본문
iOS, Swift/Tip, Bug, Swift Error
Swift ) Cell에 그림자 + 둥글게 (shadow + corner radius)
EEYatHo 2021. 3. 3. 22:17반응형
일반적으로 shadow랑 corner radius를 같이하면 적용이 안되는데,
Cell은 비교적 쉽게 구현할 수 있다.
Cell 안에서 Layout할 때,
func setupLayout() {
layer.shadowColor = UIColor.black.cgColor
layer.shadowOpacity = 0.5
layer.shadowRadius = 10
contentView.layer.cornerRadius = 10
contentView.layer.masksToBounds = true
}
이렇게,
Cell 에 shadow를 넣고,
Cell의 contentView에 corner radius를 넣으면 된다.
'iOS, Swift > Tip, Bug, Swift Error' 카테고리의 다른 글
Swift ) Google Login에러. id token expired. Code: -15 - EEYatHo iOS (1) | 2021.07.09 |
---|---|
Swift ) UISearchBar 네비게이션바에 넣기 (0) | 2021.03.04 |
Swift ) 콜렉션뷰 셀에 오토레이아웃 적용하기 (0) | 2021.03.03 |
Swift ) 로컬에 있는 xml 파일 읽어오기 (0) | 2021.03.03 |
Swift ) Background Foreground 감지 (0) | 2021.03.02 |
Comments