我正在学习如何填充表格视图的一些基本教程。我已经成功使用了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更改为1后,这是我收到的错误。
2015-01-11 18:30:11.557 TableViewTest [30788:8219862] *断言 失败 - [UITableView dequeueReusableCellWithIdentifier:forIndexPath:], /SourceCache/UIKit_Sim/UIKit-3318.16.14/UITableView.m:6116 2015-01-11 18:30:11.560 TableViewTest [30788:8219862] * 终止应用程序 未被捕获的异常' NSInternalInconsistencyException',原因:'无法 使用标识符reuseIdentifier将单元格出列 - 必须注册a nib或标识符的类或连接原型单元格 故事板'
答案 0 :(得分:2)
根据您的错误消息,这是解决方案:
在ViewDidLoad()中,添加:
self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "reuseIdentifier")
请在此处查看我的示例项目:https://github.com/ericcgu/EGSwiftTableViewController
答案 1 :(得分:1)
您的例外原因在于:
let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath) as UITableViewCell
你没有问,但我会给出一些背景信息(如果你想知道为什么会这样)
为了保留内存并提高性能,系统会将屏幕外单元格放入可重用的池中。如果UITableView需要显示一个单元格,其数据源将首先检查可重用单元格池。如果有,它(数据源)将组成单元格并将其返回到UITableView。
因此,基本上,您的数据源对象在池中检查了具有 type &#34; reuseIdentifier&#34;的单元格,并且没有找到任何单元格,因此抛出了异常。< / p>
您可以使用UITableView的 registerClass 方法为reuseIdentifier注册单元格,也可以在storyboard或xib文件的属性检查器中输入重用标识符。
希望这有帮助!