标签:
playground
的形式提供的playgound
文件,能够在每次版本升级时,第一时间发现语法的变化
/*
语法:
初始化
OC alloc / initWithXXX alloc / init
Swift 类名(XXX:) ()
方法调用 点语法调用方法
OC: [UIColor redColor];
swift: UIColor.redColor
枚举:
OC: UIButtonTypeContactAdd
Swfit: . 分开 快捷实用 选中枚举 -> enter -> 右键 -> . -> 选择枚举
枚举 . 前半部分可以省略
注意 省略前半部分枚举可能没有只能提示
swift语言 更加的简洁
*/
import UIKit
var str = "Hello, playground"
let v = UIView(frame: CGRectMake(0, 0, 100, 100))
v.backgroundColor = UIColor.redColor()
let btn = UIButton(type: .ContactAdd)
btn.center = v.center
v.addSubview(btn)
//let image = UIImage(named: "xxxx")
|
main.m
,@UIApplicationMain
是程序入口.swift
文件,没有 .h/.m
文件的区分{}
括起的,没有 @implementation
和 @end
每个语句的末尾没有分号,在其他语言中,分号是用来区分不同语句的
与 OC 的语法快速对比
alloc / init
对应 ()
alloc / initWithXXX
对应 (XXX: )
.
self.
,建议一般不写,可以提高对语境的理解(闭包时会体会到)UIButtonTypeContactAdd
,而 Swift 中分开了,操作热键:回车 -> 向右 -> .
.ContactAdd
,但是:很多时候没有智能提示print()
替代 OC 中的 NSLog
标签:
原文地址:http://www.cnblogs.com/mrhanlong/p/playground.html