我环顾四周,但感到惊讶的是我找不到任何能解释这一点的东西。如果我有:

func checkEmail ()

{
   var test = true

   return test
}

...elsewhere in the code....

var emailStatus = checkEmail ()
如何使此函数返回 bool(boolean) 值true?

最佳答案

func checkEmail() -> Bool {
   var test = true
   return test
}

在代码的其他地方。
var emailStatus = checkEmail()

关于xcode - 如何从Swift中的函数返回 boolean 值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27558429/

10-12 12:25