예제를 실습하면서 테이블뷰 최상단이 잘리는 현상이 발생했다. 위와 같은 문제는 아래처럼 테이블뷰 contentInset에 여백을 추가해줘서 해결할 수 있다. override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. //... //테이블뷰 최상단에 여백 추가 self.tableView.contentInset = UIEdgeInsets(top: 20, left: 0, bottom: 0, right: 0) }