Swift笔记-让你2小时学会Swift
过年不能闲着,一边学习Swift,一边写笔记,相信在有一定其他语言基础的情况下用1.5小时看完该文章即可掌握。然后再花30分钟打开XCode写个Demo. 生命中拿出2小时来认识一门语言,很值吧! 笔记共分为两部分,一Swift基础知识,二使用Xcode开发一个软件 [TOC] swift基础知识 变量和常量 //定义变量 var myVariable = 123 //定义常量 let myConstantVariable = 123 // 隐式指定整数类型 var anInteger = 2 // 明确指定整数类型 let anExplicitInteger :Int = 2 元组 let aTuple = (1, "Yes") let anotherTuple = (aNumber: 1, aString: "Yes") let theOtherNumber = anotherTuple.aNumber // = 1 其他用法 let http404Error = (404, "Not Found") let (statusCode, statusMessage) = http404Error print("The status code is \(statusCode)") 更多用户函数返回值,返回两个以上的值,跟golang很像 数组 var arrayOfIntegers