当我在模拟器中运行我的应用程序时,一切都完美无缺,直到我选择一个按钮进入我的主表视图,应用程序崩溃并给我SIGABRT错误。控制台只显示(lldb)
这是我的MainTableViewController编码:
import UIKit
class MainTableViewController: UITableViewController {
var myVariable = ["LIST OF STRINGS"]
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return myVariable.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath) as! UITableViewCell
var SuperVariable= myVariable[indexPath.row]
cell.textLabel!.text = SuperVariable
return cell
}
}
我的所有故事板段也都有标识符。问题是什么? :/