这是我的历史视图,我在视图控制器中有一个tableview。但是由于某种原因,我什么也无法输出,因此我试图对其进行硬编码,并且根本不显示任何内容。我知道的一件事是,我需要重写tableView函数,如果这样做,我会报错。

  import UIKit

    class History: UIViewController, UITableViewDataSource, UITableViewDelegate
    {

    @IBOutlet var tableView: UITableView!

    override func viewDidLoad()
    {
        super.viewDidLoad()

        tableView.delegate = self
        tableView.dataSource = self

        self.view.backgroundColor = UIColor(patternImage: UIImage(named: "newBackground.jpg")!)
    }

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


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

     func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
    {
        let cell = tableView.dequeueReusableCellWithIdentifier("historyCell", forIndexPath: indexPath) as! historyCell

        cell.durationLabel.text = "98"

        return cell
    }


    override func viewWillAppear(animated: Bool)
    {
        super.viewWillAppear(animated)

    }

}


这是单元格原型的类,我确保标识符也为“ historyCell”

public class historyCell: UITableViewCell{
    @IBOutlet var durationLabel: UILabel!
    @IBOutlet var kicksLabel: UILabel!

}

最佳答案

您如何将原型单元的控件连接到historyCell类中的IBOutlets?当您不使用UITableviewController时,我不知道这是可能的。我一直都在使用标签。

除非有我不知道的新东西,否则您对cell.durationLabel.text的赋值应该导致nil的展开(这是您得到的错误吗?)

关于iphone - 无法在表格 View Swift上显示任何内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34822310/

10-17 01:10