IBAction 方法
连button
返回值角度,相当于void
只有返回值声明为IBAction 的方法,才能跟storyboard中控件连线
- (IBAction)clickToBlue{
IBOutlet 属性
连label
只有声明为IBAction 的方法,才能跟storyboard中控件连线
@interface MainViewController ()
@property(nonatomic, weak)IBOutlet UILabel *label;
@end
实现:
//改变文字颜色
self.label.textColor = [UIColor redColor];
//改变文字内容
self.label.text = @"我变成红色了哦!";
//改变背景颜色
self.label.backgroundColor = [UIColor yellowColor];
//文字居中
self.label.textAlignment = NSTextAlignmentCenter;
//改变文字大小
self.label.font = [UIFont systemFontOfSize:20.f];
连线的三种方式:
- 小圆圈开始 到button
- button按下Ctrl 到代码区
- 右击button touch up inside 圆圈拖至代码区
- button 通过control 到空白action区域,修改参数