Swift初步体验

来源:互联网 发布:一维数组定义ppt课件 编辑:程序博客网 时间:2024/05/22 10:49
//: Playground - noun: a place where people can playimport 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)
0 0
原创粉丝点击