1
2
3
4
5
6
7
8
9
10
|
import
UIKit
class
ViewController
:
UIViewController
{
override
func
viewDidLoad() {
super
.viewDidLoad()
//设置标签x坐标:10,y坐标:20,长:300,宽:100
var
label=
UILabel
(frame:
CGRectMake
(10,300,100))
label.text=
"hangge.com"
self
.view.addSubview(label);
}
}
|
label.textColor=
UIColor
.whiteColor()
//白色文字
label.backgroundColor=
.blackColor()
//黑色背景
|