gpt4 book ai didi

swift - 如何调试信号 SIGABRT

转载 作者:行者123 更新时间:2023-11-30 14:01:07 26 4
gpt4 key购买 nike

我学习 Swift 一段时间了,SIGABRT 信号随机出现了好几次。我尝试过一些在线教程,但似乎并不总是有效。

这次我试图用两个 View Controller 设置一个待办事项列表。一个有一个表格 View ,另一个有一个文本字段来添加新项目。以下是两者的代码行。希望有人能帮我解决这个难题。

import UIKit

var toDoList = [String]()

class FirstViewController: UIViewController,UITableViewDelegate {
@IBOutlet var toDoListTable: UITableView!

override func viewDidLoad() {
super.viewDidLoad()
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
return toDoList.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
let cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")

cell.textLabel?.text = toDoList[indexPath.row]

return cell
}
}


import UIKit

class SecondViewController: UIViewController {

@IBOutlet var newItem: UITextField!
@IBAction func addItem(sender: AnyObject) {
toDoList.append(newItem.text)
newItem.text = ""
}

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}

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

enter image description here enter image description here

最佳答案

当我不小心重命名 socket 而不更新连接时,我收到了此错误。您是否可能犯了这个错误?

关于swift - 如何调试信号 SIGABRT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32983005/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com