UIButton##
按钮发生事件
- (IBAction)clickRedButton
{
// 改变文字颜色
self.label.textColor = [UIColor redColor];
// 改变文字内容
self.label.text = @"我是红色";
// 改变文字背景颜色
self.label.backgroundColor = [UIColor greenColor];
// 改变文字对齐方式NSTextAlignmentCenter:居中,NSTextAlignmentRight:靠右,NSTextAlignmentLeft:靠左
self.label.textAlignment = NSTextAlignmentCenter;
// 改变文字大小
self.label.font = [UIFont systemFontOfSize:30.f];
}