336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
UITableView 에서 dequeueReusableCellWithIdentifier 함수를 통해서 데이터를 다시 불러와 cell 화면을 구성합니다.
iOS 10에서는 사용법이 다음과 같이 바뀌었습니다.
iOS 9.x
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = self.tableView.dequeueReusableCellWithIdentifier("AttractionTableCell", forIndexPath: indexPath) as! AttractionTableViewCell
return cell
}
iOS 10
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "AttractionTableCell", for: indexPath) as! AttractionTableViewCell
return cell
}
'프로그램 > iOS' 카테고리의 다른 글
xcode 8 을 위한 사이즈 클래스 소개 (0) | 2016.12.06 |
---|---|
Swift 3.0 에서 달라지거나 새로워진 내용들 (0) | 2016.12.03 |
[ iOS 9.x -> iOS 10 ] UIFont.preferredFontForTextStyle (0) | 2016.12.01 |
iOS 10의 변화점 (0) | 2016.11.30 |
[ iOS 9.x -> iOS 10 ] 세그웨어 (Segue) (0) | 2016.11.25 |