gpt4 book ai didi

ios - 使用 Swift 将 TextField 中的输入打印到 Xcode 中的标签

转载 作者:可可西里 更新时间:2023-11-01 00:38:04 26 4
gpt4 key购买 nike

我正在开发一个简单的猜谜游戏应用程序,只是为了更熟悉 Swift 和 Xcode。我已经能够在 userInput 中输入并让它向控制台打印一条消息,但是当我试图让它将我的输入打印到 usersGuess(这是一个标签)时,我无法弄清楚。

这是我通过 Xcode 在单 View 应用程序中的代码:

import UIKit

class ViewController: UIViewController {
@IBOutlet weak var correctAnswerLabel: UILabel!
@IBOutlet weak var usersGuess: UILabel!

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.
}

@IBAction func buttonPressed() {
correctAnswerLabel.text = "Changes when the button is pressed."
}

@IBAction func userInput(sender: UITextField) {
println("This is working")
}


}

我敢肯定这很简单,但我正在摸不着头脑哈哈。

最佳答案

@IBAction func userInput(sender: UITextField) {
println("This is working")
usersGuess.text = sender.text
}

关于ios - 使用 Swift 将 TextField 中的输入打印到 Xcode 中的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27083943/

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