UITableView无法在模拟器中显示

时间:2014-09-23 12:00:06

标签: autolayout ios8 xcode6

我在Xcode 6中创建了一个tableview,并将其连接到视图控制器。每当我尝试在模拟器中运行应用程序时,tableview根本没有显示,我不知道为什么。这是最令人困惑的。

任何帮助都将受到高度赞赏。

In Storyboard

In the simulator

班级:     class HomeMenuController:UIViewController,UITableViewDelegate,UITableViewDataSource {

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

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


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



    return 2
}




 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {


    var cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier("newChecklist") as UITableViewCell

return cell
}

}

1 个答案:

答案 0 :(得分:0)

我发现问题是怎么回事。

VC没有第一个ViewController'点击选项。解释一切。