我是 ios 应用程序开发的新手,我一直在开发一个小应用程序,您可能会在下面看到我附上了我的代码。我要做的是在应用程序底部添加一个按钮,以允许用户在每次点击按钮时添加另一行,另一行将包括另外 3 列,每次点击按钮时添加一个新行我希望总数(在这种情况下为 c & d)遵循与代码中相同的模式。将权重(textField2 和 textField3)乘以(x)的数量:并添加到先前的总数(c 和 d)。任何帮助或建议将不胜感激。谢谢。
例子:
数量:10
姓名 总重量
10 100
b 5 150
** 我现在想给用户添加另外 3 列并继续的选项**
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (IBAction)calculate {
float x = ([textField1.text floatValue]);
float c = x*([textField2.text floatValue]);
float d = c+x*([textField3.text floatValue]);
label.text = [[NSString alloc] initWithFormat:@"%2.f", c];
label2.text = [[NSString alloc] initWithFormat:@"%2.f", d];}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end