나의 플랫폼/iOS
[iOS] UITableView의 footerView 변경 - height, background color
GsBOB
2017. 6. 28. 16:09
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
}
위와 같이 소스를 오버라이딩 받아서 변경 해주시면 됩니다.
참고하세요.