//: Playground - noun: a place where people can play
import UIKit
/*
创建对象:
OC: alloc/initWithXXX
Swfit: (xxx:)
调用方法
OC: [UIColor redColor];
Swift: UIColor.redColor()
*/
let view = UIView(frame:CGRect(x: 0,y: 0,width: 100,height: 100))
view.backgroundColor = UIColor.redColor()
/*
枚举(枚举前面的枚举名称是可以省略的,开发者一般不会省略)
OC: UIButtonTypeContactAdd
Swift: UIButtonType.ContactAdd
创建结构体
OC: CGPointMake();
Swift:CGPint()
*/
let btn = UIButton(type: UIButtonType.ContactAdd)
btn.center = CGPoint(x: 50,y: 50)
view.addSubview(btn)
Swift初步体验
最新推荐文章于 2025-04-27 21:17:45 发布