創(chuàng)建一個(gè)ios應(yīng)用->Single View Application->填寫(xiě)項(xiàng)目名稱和選擇語(yǔ)言
let redView = UIView()
redView.frame = CGRectMake(100, 100, 100, 100)
redView.backgroundColor = UIColor.redColor()
Self.View.addSubview(redView)
super.viewDidLoad() //內(nèi)容添加在之后
快捷鍵
Shfit+Command+h
Shift+Command+h+h
Shift+方向鍵
Command+[
Command+]
if else條件判斷語(yǔ)句
switch-case分支語(yǔ)句(語(yǔ)句為空時(shí)使用break,使用fallthrough才能執(zhí)行下一個(gè)case)
while循環(huán)語(yǔ)句
for循環(huán)語(yǔ)句
enum{} 枚舉
repeat while 至少重復(fù)一次
for循環(huán)-遍歷數(shù)組【for i in 數(shù)組名】
for循環(huán)-遍歷字典【for pair in dict】
【for (key眷柔, value) in dict】
使用_ 下劃線占位