从情节提要向表视图附加类时出现问题

时间:2018-10-31 12:47:33

标签: ios swift xcode

我正在开发一个包含用户创建部分的应用, 我在故事板上的表格视图中创建了帐户。

如果我当时只运行模拟器,我会看到所有的tableview,一切都很好。 但是一旦我给它扩展了UITableViewController的类, 我在模拟器中运行所有内容 屏幕为空,无字段。 我究竟做错了什么 ? 我需要寻找什么?

如果我将其运行为空,我会在模拟器中看到一切正常>

enter image description here

但是一旦我添加了班级,我什么都看不到,但是空字段>

enter image description here

谢谢

1 个答案:

答案 0 :(得分:0)

修复了它 通过将我的Tableview方法修改为此:

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // #warning Incomplete implementation, return the number of rows
        print ("section: ", section)
        if (section == 0) {
            return 4

        } else if (section == 1) {
            return 1

        } else if (section == 2) {
            return 4

        } else if (section == 3) {
            return 2

        } else if (section == 4) {
            return 1

        } else if (section == 5) {
            return 3

        } else if (section == 6) {
            return 1

        } else if (section == 7) {
            return 1

        } else {
            return 0
        }

    }