无法让 UITableViewController 动态填充

Can't get UITableViewController to dynamically populate

我正在学习一些关于如何填充 table 视图的基本教程。我在 UITableView 和动态填充方面取得了成功,但是遵循相同的步骤对我来说对 UITableViewController 不起作用。

关于为什么我在使用控制器时遇到困难的任何解释?

关于 UITableViewController 的信息似乎没有 UITableView 多。为什么每个人似乎都被 UITableView 所吸引是有原因的?

作为记录,这是我正在关注的教程:http://www.ioscreator.com/tutorials/tableview-tutorial-in-ios8-with-swift

import UIKit

class TestTableViewController: UITableViewController, UITableViewDelegate {

    let tableData = ["One", "Two", "Three"]

    override func viewDidLoad() {
        super.viewDidLoad()

        // Uncomment the following line to preserve selection between presentations
        // self.clearsSelectionOnViewWillAppear = false

        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    // MARK: - Table view data source

    override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        // #warning Potentially incomplete method implementation.
        // Return the number of sections.
        return 0
    }

    override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // #warning Incomplete method implementation.
        // Return the number of rows in the section.
        return countElements(tableData)
    }


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

        // Configure the cell...
        cell.textLabel?.text = tableData[indexPath.row]

        return cell
    }


    /*
    // Override to support conditional editing of the table view.
    override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        // Return NO if you do not want the specified item to be editable.
        return true
    }
    */

    /*
    // Override to support editing the table view.
    override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
        if editingStyle == .Delete {
            // Delete the row from the data source
            tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
        } else if editingStyle == .Insert {
            // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
        }    
    }
    */

    /*
    // Override to support rearranging the table view.
    override func tableView(tableView: UITableView, moveRowAtIndexPath fromIndexPath: NSIndexPath, toIndexPath: NSIndexPath) {

    }
    */

    /*
    // Override to support conditional rearranging of the table view.
    override func tableView(tableView: UITableView, canMoveRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        // Return NO if you do not want the item to be re-orderable.
        return true
    }
    */

    /*
    // MARK: - Navigation

    // In a storyboard-based application, you will often want to do a little preparation before navigation
    override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
        // Get the new view controller using [segue destinationViewController].
        // Pass the selected object to the new view controller.
    }
    */

}

将 numberOfSectionsInTableView 更改为 return 1 后,这是我收到的错误。

2015-01-11 18:30:11.557 TableViewTest[30788:8219862] * Assertion failure in -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:], /SourceCache/UIKit_Sim/UIKit-3318.16.14/UITableView.m:6116 2015-01-11 18:30:11.560 TableViewTest[30788:8219862] * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier reuseIdentifier - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'

根据您的错误信息,解决方法如下:

在ViewDidLoad()中,添加:

self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "reuseIdentifier")

在此处查看我的示例项目:https://github.com/ericcgu/EGSwiftTableViewController

您的异常原因在这里:

let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath) as UITableViewCell

你没有问,但我会提供一些背景知识(以防你想知道为什么会这样)

为了节省内存并提高性能,系统将屏幕外的单元格放入可重复使用的池中。如果 UITableView 需要显示一个单元格,它的数据源将首先检查可重用单元格池。如果有,它(数据源)将组成单元格并将其 return 到 UITableView。

因此,从本质上讲,您的数据源对象检查池中是否有 类型 "reuseIdentifier" 的单元格,但没有找到任何单元格,因此抛出了异常。

您可以使用 UITableView 的 registerClass 方法为 reuseIdentifier 注册单元格,或者在故事板或 xib 文件的属性检查器中输入重用标识符。

希望对您有所帮助!