没有调用Swift UITableViewDelegate方法

时间:2015-09-04 13:49:10

标签: ios swift storyboard tableview

我使用ViewController创建了TableView并为其添加了storyboard

我将Storyboard中的班级设置为ViewController到我的NewsFeedViewController班级。我将tableview出口的代表设置为self。

class NewsFeedViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

    @IBOutlet weak var newsFeedTableView: UITableView!

    override func viewDidLoad() {
        super.viewDidLoad()

        newsFeedTableView.delegate = self
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }

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

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

        return cell
    }

    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    }

}

当我运行代码时,不会触发任何委托方法。我做错了什么?

1 个答案:

答案 0 :(得分:7)

您缺少数据源分配。

尝试添加

newsFeedTableView.dataSource = self