gpt4 book ai didi

swift - 错误 : Execution was interrupted, 原因 : signal SIGABRT. 在 swift playgrounds

转载 作者:行者123 更新时间:2023-12-05 06:17:31 33 4
gpt4 key购买 nike

当我尝试在 Xcode 中运行 playground 时出现此错误:

error: Execution was interrupted, reason: signal SIGABRT.
The process has been left at the point where it was interrupted, use "thread return -x" to return to the state before expression evaluation.

这是我的 Playground 代码:

import UIKit
import PlaygroundSupport

class MyViewController : UIViewController {
override func loadView() {
let view = UIView()
view.backgroundColor = .white

let titleLabel = UILabel()
titleLabel.frame = CGRect(x: 150, y: 200, width: 200, height: 20)
titleLabel.text = "Title"
titleLabel.textColor = .black

let subtitleLabel = UILabel()
subtitleLabel.text = "Subtitle"
subtitleLabel.textColor = .gray
subtitleLabel.frame = CGRect(x: 150, y: 200, width: 200, height: 20)

NSLayoutConstraint.activate([
titleLabel.bottomAnchor.constraint(equalToSystemSpacingBelow: subtitleLabel.topAnchor, multiplier: 10)
])

view.addSubview(subtitleLabel)
view.addSubview(titleLabel)
self.view = view
}
}
PlaygroundPage.current.liveView = MyViewController()

如何修复此错误?这是 Xcode 中的错误吗?还是我的代码有问题?

最佳答案

loadView 方法中重新排序代码。在添加约束之前向上移动addSubview

view.addSubview(subtitleLabel)
view.addSubview(titleLabel)

NSLayoutConstraint.activate([
titleLabel.bottomAnchor.constraint(equalToSystemSpacingBelow: subtitleLabel.topAnchor, multiplier: 10)
])

self.view = view

错误将消失。

关于swift - 错误 : Execution was interrupted, 原因 : signal SIGABRT. 在 swift playgrounds,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61635669/

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