摘要:
UILabel:显示文本的控件(静态文本框,内容不能修改) UILabel * label1 = [[UILabel alloc] initWithFrame:CGRectMake(20, 20, 100, 60)]; [label1 setBackgroundColor:[UIColor redColor]]; label1.alpha = 0.5;// label1.text = @"hello";//点语法的内部实现是set方法 [label1 setText:@"hello world"]; [label1 setTextColor:[UICol 阅读全文