gpt4 book ai didi

ios - xcode9: 类 AppDelegate: UIResponder, UIApplicationDelegate...线程 1: 信号 SIGABRT

转载 作者:行者123 更新时间:2023-11-28 08:04:02 24 4
gpt4 key购买 nike

如果这是一个明显的错误(编码新手!),我深表歉意,但我遇到了几个问题。

1:我想在Xcode 9中加载Simulator出现如下错误:

class AppDelegate: UIResponder, UIApplicationDelegate...
Thread 1: signal SIGABRT

此问题仅在我为“猫年”标题添加标签并更改主 Storyboard中的背景颜色后出现。

2:当Simulator在上述改动之前工作时,猫(imageView)不会出现在Simulator中?

感谢您提前提出任何建议。

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var ageTextField: UITextField!

@IBOutlet weak var resultLabel: UILabel!

@IBAction func getAge(_ sender: Any) {

if let age = ageTextField.text {

if let ageAsNumber = Int(age) {

let ageInCatYears = ageAsNumber * 7

resultLabel.text = "Your cat is " + String(ageInCatYears) + " in cat years!"



}
}

}


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

最佳答案

当您的 socket 与 View 断开连接时,您会收到“SIGABRT”错误。您可以通过单击 Storyboard 中的 View Controller 并转到侧面板上的连接来进行检查。如果您在那里看到一个额外的/重复的 socket ,这可能是导致您出现问题的原因。

在您的示例中,您可能在文本字段上有一个额外的 socket ,或者您的代码中的 socket 引用了不同的文本字段并且该字段不再在您的 Storyboard 中。

关于ios - xcode9: 类 AppDelegate: UIResponder, UIApplicationDelegate...线程 1: 信号 SIGABRT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45689878/

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