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
}
위와 같이 소스를 오버라이딩 받아서 변경 해주시면 됩니다.
참고하세요.
'나의 플랫폼 > iOS' 카테고리의 다른 글
[iOS] UITextView Scroll to top (0) | 2017.07.19 |
---|---|
[iOS] CocoaPod 추가 해보기 (0) | 2017.07.11 |
[iOS] Kingfisher 이미지 다운로드시, Authentication with NSURLCredential (0) | 2017.06.27 |
[iOS] UIWebView 에서 request시 SSL 인증 제외 (0) | 2017.06.26 |
[iOS] 키보드 강제로 내리기 (0) | 2017.06.16 |