728x90
반응형
iOS15 tableview section header 간격 문제 해결
iOS15 tableview section header gap
iOS15로 업데이트 후 tableView가 이상하게 변했다.
cell이 없을 경우 section header height 값을 0으로 return 했는데도
옆에 사진처럼 section header 간격이 잡혀버리는 것;;
구글링 해보니 iOS15부터 새로 적용되는 기능...
sectionHeaderTopPadding 를 설정해주면 된다.
0으로 주면 cell 사이 선이 사라져서 안 보임
if #available(iOS 15, *) {
tableView.sectionHeaderTopPadding = 0
}
1로 주면 cell 사이 선이 보임
if #available(iOS 15, *) {
tableView.sectionHeaderTopPadding = 1
}
댕스투,, 볼씨. 댕수투.. 뽈씨... 문어씨...타코걸.. 댕큐댕큐..
https://stackoverflow.com/questions/68251666/ios-15-gap-between-navigation-bar-and-table-view
728x90
반응형
'⭐️ 개발 > iOS & Swift' 카테고리의 다른 글
[Swift] ARC 공부하기 (0) | 2021.10.16 |
---|---|
[iOS] Firebase로 이메일 로그인, 애플로그인 구현하는 방법 (2) | 2021.10.07 |
[iOS] Storyboard 없이 Navigation Controller로 시작하기 (2) | 2021.09.12 |
[iOS] URLSession 사용해서 서버 통신해보기 (feat. 네이버 Movie API) (2) | 2021.08.29 |
[iOS] MVVM 패턴 가볍게 톺아보기 (1) | 2021.08.26 |