Swift で tableViewCell作る時はIdentifierを指定する

f:id:entaku19890818:20161011224412j:plain

の右上のIdentifierへ"reuseIdentifier"を指定する

   override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath) as UITableViewCell

        // Configure the cell...
        cell.textLabel?.text = "TEST"
        return cell
    }