类 里面的 属性用 var
类是一个对象的蓝图,类是对象的说明书,
类里面 有属性 和方法 每一个对象的方法 都是相同的, 而每一个对象的属性 是不同的
为什么要创建对象呢? 是因为要创建 不同属性的对象
作为判断语句时,
swift 里面只有真 true 和假 false,没有 OC 中的 非 0 即为真!
古老的花括号
UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 10, 10)];
label.backgroundColor = [UIColor redColor];
[self.view addSubview: label];
{
UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(10, 110, 10, 10)];
label.backgroundColor = [UIColor redColor];
[self.view addSubview: label];
}
UILabel *labe = ({
UILabel * lab = [[UILabel alloc]initWithFrame:CGRectMake(100, 300, 10, 10)];
lab.backgroundColor = [UIColor redColor];
[self.view addSubview: lab];
lab;// 此处会给labe 设置数值
});