为什么不能显示我的表视图单元格?

时间:2016-04-01 13:49:43

标签: ios swift uitableview storyboard

我正在学习故事板教程,主要是关于Tab Bar Controller,Navigation Controller和Table View Controller的使用。表视图控制器嵌入在导航控制器中。

然而,当我运行这个应用程序时,无法看到表视图单元格。我已经仔细检查了我的代码,但仍然无法找到原因。这里有两个故事板。 Document Outline,click here. View Controller Scene, here.

ViewController.swift中的代码就在这里。

Convert.ToDateTime("2016-03-24T17:15:25.879Z")

2 个答案:

答案 0 :(得分:1)

在屏幕截图中("文档大纲"),有PlayersViewController场景。 但这应该是Players View Controller(带空格)。

这意味着您将PlayersViewController设置为ViewController的title。 您应该为此场景(ViewController)将其设置为custom class

所以你的场景由UITableViewController处理,目前没有数据存在。

要解决此问题,请选择您的视图控制器或场景,转到Identity Inspector并在PlayersViewController属性中设置Class

答案 1 :(得分:0)

//register your cell(nib) in viewdidload
let customCellNib: UINib = UINib(nibName:@"nibName", bundle: nil)
yourTableView.registerNib(customCellNib, forCellReuseIdentifier:@"PlayerCell")