问答详情
源自:2-5 Swift-可选型 Optionals

为什么我使用的toInt方法会给提示出错

https://img4.mukewang.com/5d3d0d3100017b3e24200126.jpg

这么会有问题的,具体是什么情况

提问者:慕沐8480496 2019-07-28 10:49

个回答

  • 慕桂英8258966
    2019-08-15 16:42:10

    let userInput = "18"

    var age = Int(userInput)


    if age != nil {

        print("Your age is + \(String(describing: age!))")

    } else {

        print("invalid userInput")

    }


  • 慕桂英8258966
    2019-08-15 16:41:11

    let userInput = "18"

    var age = Int(userInput)


    if age != nil {

        print("Your age is + \(String(describing: age!))")

    } else if age == nil {

        print("invalid userInput")

    }



  • 无敌老子
    2019-08-06 20:37:11

    你的xcode,swift是啥版本的?报错信息是说没有 toInt这个成员(memeber),估计应该是因为你的swift版本低导致的