본문 바로가기

나의 플랫폼/iOS

[iOS] UITableView의 footerView 변경 - height, background color

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

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

    }



위와 같이 소스를 오버라이딩 받아서 변경 해주시면 됩니다.

참고하세요.