gpt4 book ai didi

ios - Swift 代码在 Xcode 中是如何执行的

转载 作者:行者123 更新时间:2023-11-29 11:37:46 24 4
gpt4 key购买 nike

我有一个问题。我是 iOS 编程的新手,我很难理解 Swift 代码是如何执行的。例如,在下面的这段代码中,我认为每一行都在上面的代码之后执行。但是当它到达 passData() 函数时,它不会执行该函数。它继续进行,一段时间后(或更早)它执行它(passData 函数)。

override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)

if numLaunches == 0{
nombre = usuario()
numLaunches += 1
}
}

func usuario() -> String {
var tField: UITextField!

func configurationTextField(textField: UITextField!)
{
print("generating the TextField")
textField.placeholder = "Enter an item"
textField.textAlignment = .center
tField = textField
}

func handleCancel(alertView: UIAlertAction!)
{
print("Cancelled !!")
}

let alert = UIAlertController(title: "Please Enter Your Name", message: "", preferredStyle: .alert)

alert.addTextField(configurationHandler: configurationTextField)
alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler:handleCancel))
alert.addAction(UIAlertAction(title: "Done", style: .default, handler:{ (UIAlertAction) in
print("Done !!")

print("Item : \(String(describing: tField.text))")
self.nombre = tField.text!
}))
self.present(alert, animated: true, completion: {
print("completion block")
})
print(self.nombre)
passData()
if tField.text == nil {
return "No value"
}else{
return (tField.text!)
}
}

func passData() {
let myVC = storyboard?.instantiateViewController(withIdentifier: "SecondVC") as! AboutViewController
if myVC.playerName != nil {
myVC.playerName.text = nombre
}else{

}
navigationController?.pushViewController(myVC, animated: true)
print("pasa el dato")
}

所以,问题是,我需要将变量“nombre”的内容传递给另一个 VC。但是当执行 passData 函数时,该变量为空。我想如果我在变量更新后调用那个函数,它会传递正确的内容。但我显然错了。

非常感谢您的帮助!

最佳答案

一般来说,除非您的函数是异步的,否则您对代码是自上而下执行的理解是正确的。在这种情况下,我认为您只是对您的 UIAlertAction 代码感到困惑。看起来您正在向用户弹出警报,要求他们写下他们的名字,当他们点击“完成”时,您想要调用您的 passData() 函数。在这种情况下,您应该将 passData() 调用放在 inside 您的 UIAlertAction 中,如下所示:

alert.addAction(UIAlertAction(title: "Done", style: .default, handler:{ (UIAlertAction) in
print("Done !!")

print("Item : \(String(describing: tField.text))")
self.nombre = tField.text!
self.passData()
}))

您的 UIAlertAction 的处理程序中的代码将不会执行,直到用户按下该按钮,这就是为什么您发现 passData 被过早调用的原因.

关于ios - Swift 代码在 Xcode 中是如何执行的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48173355/

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