Swift
文章平均质量分 66
妙亦涵
iOS开发程序员
展开
-
Swift Cheat Sheet [1] — Basic Types
常量和变量Varibalesvar myInt = 1 //inexplicit type var myExplicitInt : Int = 1 // explicit type var x = 1, y = 2, z = 3 //declare multiple integers myExplicitInt = 3 // set to another integer value Constant原创 2015-10-29 09:41:29 · 764 阅读 · 0 评论 -
Swift Cheat Sheet [2] - Control Flow
If条件语句if elselet number = 100 if number < 10 { print("The number is small") } else if number > 100 { print("The number is pretty big") } else { print("The number is between 10 and 100") } i原创 2015-10-29 09:42:58 · 627 阅读 · 0 评论