728x90
출처 : [IOS/Swift] Custom TableView Cell 만들기 - 코딩하는 빵 - Tistory
//
// ViewController.swift
// TableView2
//
// Created by bluesanta on 2017. 6. 10..
// Copyright © 2017년 bluesanta. All rights reserved.
//
import UIKit
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
var toDoArray = ["영화보기", "야구보기", "수영하기"]
@IBOutlet weak var toDoTableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
self.toDoTableView.dataSource = self
self.toDoTableView.delegate = self;
}
public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return toDoArray.count
}
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "toDoCell", for:indexPath)
cell.textLabel?.text = toDoArray[indexPath.row]
return cell
}
public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
// 선택 이벤트
}
}
Custom Cell
Custom Cell Class 생성 및 지정
Custom Cell 사용
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCell(withIdentifier: "tvCell", for:indexPath) as! MovieTableViewCell
//cell.textLabel?.text = movieArray[indexPath.row].title
cell.thumbnailImageView.image = nil
cell.titleLabel.text = movieArray[indexPath.row].title
cell.genreLabel.text = movieArray[indexPath.row].genre
cell.ratingLabel.text = movieArray[indexPath.row].ratingAverage
/*
if let titleLabel = cell.viewWithTag(11) as? UIImageView {
titleLabel.text = movieArray[indexPath.row].title
}
*/
return cell
}
TableView 갱신
// 메일 쓰레드에서 화면 갱신
DispatchQueue.main.async {
self.tvMovie.reloadData()
}
테이블 상단 공백 제거
- Adjust Scroll View Inserts 체크 제거
728x90