摘要: 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 阅读全文
posted @ 2014-04-02 21:26 lxl奋小斗 阅读(131) 评论(0) 推荐(0) 编辑