我对swift很新,并且在下一行遇到了这个错误。
if(userEmail.isEmpty || userPassword.isEmpty || userRepeatPassword.isEmpty)
答案 0 :(得分:0)
试试这个:
guard let userEmail = userEmail where !userEmail.isEmpty else {
print("oh oh")
return
}
您可以将所有验证测试合并到一个防护中,但它们可能会很长。