标签:
@interface MJViewController ()
// 这里先把IBAction看做是
void - (IBAction)compute;
@end
@implementation MJViewController
- (void)compute
{
NSLog(@"点击了计算按钮");
}
@end
就这样,点击“计算”按钮,就会自动调用compute方法了
在类扩展中,声明3个属性,用来访问storyboard中的3个控件
IBOutlet和weak的作用会在后面解释
初学者最容易犯、最不应该犯的一个错误:钻牛角尖
利用MJViewController的number1属性就能访问第1个文本框;
利用MJViewController的number2属性就能访问第2个文本框;
利用MJViewController的result属性就能访问右边的文本标签。
- (void)compute
{
// 获取第一个数值
int num1 = [self.number1.text intValue];
// 获取第二个数值
int num2 = [self.number2.text intValue];
// 设置文本标签的值
self.result.text = [NSString stringWithFormat:@"%d", num1 + num2];
}
标签:
原文地址:http://www.cnblogs.com/YangFuShun/p/4311709.html