swift學習_xcode基礎學習

來源:互聯網
上載者:User

標籤:ios開發

android L已經在開發大會上公布了, 技術得跟上時代的潮流, 一心想在移動互連網中發展,只好努力學習 html+ js  ,  oc ! 伺服器營運我就不寫了,就算是自己的生活記錄。android 說真心話, 一直想寫,結果發現自己很喜歡寫得連續點,就像仙劍一樣, 應該是能讓人回味的那種,文筆不好 , 就先這些基礎開始練習吧。 

發獃中。。。。。

上一個教程中 xcode6  安裝後,開啟xcode開始介面,我突然發現 get start playground , 一直在猶豫他是神馬。。。。

點擊get start playground 之後,介面有大驚喜,這個是html 常會出現的即時頁面,  記得用blog寫md 文法的時候 ,就是這樣的頁面。。。。



        

好吧, var  js的節奏啊 !!  瞬間激動了, 難道oc和js 合體了, swift果然是神器。

        接下來部分代碼

// Playground - noun: a place where people can playimport Cocoavar str = "Hello, playground" //變數var x = 0.0, y = 0.0, z = 0.0let numInt = 10 //常量/***多行注釋*/println(str) //輸出函數println(numInt)println("str is \(str) num is \(numInt)")/***需要注意Double*/let anotherPi = 3 + 0.14159// anotherPi 會被推測為 Double 類型let decimalInteger = 17let binaryInteger = 0b10001       // 二進位的17let octalInteger = 0o21           // 八進位的17let hexadecimalInteger = 0x11     // 十六進位的17 很喜歡0x ,讓我想起了做遊戲外掛時的痛苦,讀取記憶體基址/*** 元組 java中map的馬甲,先這麼理解吧*/let http404Error = (404, "Not Found")let (statusCode, statusMessage) = http404Errorprintln("The status code is \(statusCode)")// 輸出 "The status code is 404"println("The status message is \(statusMessage)")// 輸出 "The status message is Not Found"let (justTheStatusCode, _) = http404Errorprintln("The status code is \(justTheStatusCode)")// 輸出 "The status code is 404"  只需要一部分元組值,分解的時候可以把要忽略的部分用底線(_)標記println("The status code is \(http404Error.0)")// 輸出 "The status code is 404" 下標方式取值println("The status message is \(http404Error.1)")// 輸出 "The status message is Not Found" 下標方式取值let http200Status = (statusCode: 200, description: "OK") //淩亂了, 居然可以這樣寫, 這是map<String , Object> 先這麼理解吧。










相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.