Swift TableView 가변 높이 처리
2021. 5. 19. 20:10ㆍ아이폰 개발
앱 개발을 하다보면 가변하는 컨텐츠 크기에 맞춰서 TableView의 Cell 높이를 동적으로 처리해야하는 경우가 있다
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return UITableView.automaticDimension
}
https://gigas-blog.tistory.com/2
테스트를 위해서 임의의 텍스트를 자동 생성하는 라이브러리는 이것을 이용하였다
https://cocoapods.org/pods/LoremIpsum