我正在制作计算申请表。 不知怎的,我可以按照我的想象制作按钮0~9和四个操作(+, - ,*,÷)。 然后,我想添加一个小数点按钮。 但是,我不知道如何添加按钮并连接0〜9按钮。 能不能给我建议。
下面的是1个按钮作为参考。
- (void) createButton1{
self.button1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
self.button1.frame = CGRectMake(10.0f, 330.0f, 30.0f, 30.0f);//20.0f
[self.button1 setTitle:@"1" forState:UIControlStateNormal];
[self.button1 addTarget:self action:@selector(sendOne) forControlEvents:UIControlEventTouchUpInside];
self.button1.backgroundColor = [UIColor whiteColor];
[self.view addSubview:self.button1];
}
- (void) sendOne{
NSLog(@"ステータスは%d",state);
NSLog(@"sendOne before");
EnterNumber = EnterNumber * 10 + 1;
DisplayNumber = EnterNumber;
labelTotal.text = [NSString stringWithFormat:@"%.1f", DisplayNumber];
NSLog(@"%.1f",firstNumber);
NSLog(@"%.1f",secondNumber);
state = 0;
}