UILabel不会出现在UITableViewCell上

时间:2018-02-16 17:48:39

标签: swift xcode uitableview uilabel

出于某种原因,在模拟器上构建项目时UILabel不显示(并且Xcode没有报告错误)。

-------这是代码-------

import UIKit

class Cursos_PUC: UITableViewCell {

    @IBOutlet weak var Curso_1: UILabel!


}

class Cursos_PUC_TableView: UITableViewController {

    var cursos = ["Arquitetura", "Culinária", "Ciência da Computação"]

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


        let nomeCursos = cursos[indexPath.row]
        cell.Curso_1?.text = nomeCursos

        return cell
    }

}

1 个答案:

答案 0 :(得分:0)

您使用的是故事板还是代码? 如果使用故事板,那么我认为您的标签插座没有连接到标签。如果不是那么您必须将您的课程注册到表视图单元格