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

来源:2-5 Swift-可选型 Optionals

慕沐8480496

2019-07-28 10:49

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

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

写回答 关注

3回答

  • 慕桂英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版本低导致的

    慕沐8480...

    我的Xcode是最新的,swift 使用的是5.01的。

    2019-08-12 21:17:18

    共 1 条回复 >

玩儿转Swift

这套教程比任何的Swift中文教程深入,并且演示示例更丰富

57181 学习 · 511 问题

查看课程

相似问题