根據我的其他線程,我的代碼中有一個信號SIGABRT錯誤。代碼包括:Swift:表視圖 - 信號SIGABRT
包含1個TableView和1個表格單元格的故事板 自定義Tablecell類(TableViewCell_Prototyp),它通過(強)IBoutlets連接到故事板。 View Controller類,在下文中進行描述。
我的ViewController類連接到3個超類:UIViewController,UITableViewDelegate,UITableViewDataSource。另外,還有3個功能被執行。有人可以找到錯誤嗎?
override func viewDidLoad() {
super.viewDidLoad()
}
我不知道這裏會發生什麼。它是默認寫入的,所以它不應該導致任何錯誤。
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
我只想要一個表單元格被返回。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell (withIdentifier: "picCell") as! TableViewCell_Prototyp
cell.shoutPic.image = #imageLiteral(resourceName: "Bildschirmfoto 2017-06-05 um 10.11.21")
cell.shoutText.text = "Hallooooooooo"
return cell
}
shoutPic和shoutText通過插座連接到TableViewCell_Prototype自定義類。
什麼是完整的錯誤消息?哪一行代碼正在導致錯誤? – rmaddy
libC++ abi.dylib:以NSException類型的未捕獲異常終止 –