gpt4 book ai didi

ios - “正常”在 Swift 2 中明确不可用

转载 作者:行者123 更新时间:2023-11-28 12:13:53 25 4
gpt4 key购买 nike

我正在上 Udacity 的类(class),该类(class)是用旧版本的 Xcode 教授的。

仍在尝试找出与新版本 Xcode 的差异。感谢您的帮助。

谢谢大家!

button.frame = CGRect(x: 150, y: 250, width: 60, height: 60)
button.setTitle ("Click", for: .Normal)
button.setTitleColor(UIColor.blueColor(), forState: Normal)
self.view.addSubview(button)

显示以下错误消息:

Normal is explicitly marked unavailable here

use of unresolved identifier normal

最佳答案

在 Swift 2 中,你少了一个点。

button.setTitle ("Click", for: .Normal)
button.setTitleColor(UIColor.blueColor(), forState: .Normal) // <-- Added dot.

在 Swift 4.0 中,API 发生了变化。

button.setTitle("Click", for: .normal)
button.setTitleColor(.blue, for: .normal)

关于ios - “正常”在 Swift 2 中明确不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47557488/

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