gpt4 book ai didi

swift - Xcode 7.2.1 使用 Swift 按钮制作重置按钮

转载 作者:行者123 更新时间:2023-11-30 10:03:10 25 4
gpt4 key购买 nike

我正在尝试为我的应用程序创建一个重置按钮,将 UI 重置为原始状态。我制作了一个 UIButton 并将其链接到 ViewController,但我不知道从这里去哪里。我尝试使用以下代码:

@IBAction func resetToOriginalState(sender: UIButton) {
self.resetToOriginalState (sender: UIButton)
}

它给了我以下错误:

Editor placeholder in source file

抱歉,如果可能有一个明显的答案,但我对 Swift 和 Xcode 非常陌生。

还有其他方法可以创建重置按钮吗?

最佳答案

错误:

Editor placeholder in source file

是因为您正在使用 UIButton 类名称而不是实际按钮调用函数。

@IBAction func resetToOriginalState(sender: UIButton { 

// this line is wrong, you shouldn't have UIButton in here
self.resetToOriginalState (sender: UIButton)

// the line should read
self.resetToOriginalState (sender: sender)
}

这样,您就可以将实际按钮传递到传递给 resetToOriginalState 的函数中

关于swift - Xcode 7.2.1 使用 Swift 按钮制作重置按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37366175/

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