#UITableView 썸네일형 리스트형 [iOS] UITableView scroll to top UITableView이 Scroll을 최상위로 옮길 때 아래와 같은 소스 형태로 많이 할 것이다. 12let indexPath = IndexPath(row: 0, section: 0)self.tableView.scrollToRow(at: indexPath, at: .top, animated: false)cs 하지만, 저 같은 경우 가끔 TableView 첫번째 Cell만 정상 동작을 하지 않는 경우가 발생 하더라구요.갱신이 안되는 가장 많이 발생 했었습니다. 그래서, 여러 테스트를 해본 결과 아래 형태로 하면 해결 되더라구요. 12let indexPath = NSIndexPath(row: NSNotFound, section: 0)self.tableView.scrollToRow(at: indexPath a.. 더보기 [iOS] UITableView의 footerView 변경 - height, background color override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { if (section == 특정 위치) { return 85 } else { return 0 } } override func tableView(_ tableView: UITableView, willDisplayFooterView view: UIView, forSection section: Int) { view.tintColor = UIColor.clear } 위와 같이 소스를 오버라이딩 받아서 변경 해주시면 됩니다.참고하세요. 더보기 이전 1 다음