连接到表视图控制器时,Swift静态表视图消失

时间:2015-04-04 10:53:16

标签: ios uitableview swift xcode6

我在我的主故事板中创建了一个简单的静态表视图,但每次我连接一个空白的UITableViewController时,静态视图都没有加载。

It should look like this (no controller file connected) When connected it looks like this

1 个答案:

答案 0 :(得分:8)

从UITableViewController子类中删除numberOfSectionsInTableView()tableView(numberOfRowsInSection:)的默认实现。

即。删除这些方法,因为它们返回0:

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return 0
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 0
}