这么会有问题的,具体是什么情况
let userInput = "18"
var age = Int(userInput)
if age != nil {
print("Your age is + \(String(describing: age!))")
} else {
print("invalid userInput")
}
let userInput = "18"
var age = Int(userInput)
if age != nil {
print("Your age is + \(String(describing: age!))")
} else if age == nil {
print("invalid userInput")
}
你的xcode,swift是啥版本的?报错信息是说没有 toInt这个成员(memeber),估计应该是因为你的swift版本低导致的