I am new to ios app development I have been working on a small app that you may see below I have attached my code. What I am looking to do is add a button at the bottom of the app to allow the user to add another line each time the button is tapped another line would include another 3 columns, swell as adding a new line each time the button is tapped I would like the total(c & d in this case) to follow the same pattern as in the code. Multiply the weight(textField2 & textField3) by the number of(x): and add to previous total(c & d). Any help or advice would be greatly appreciated. Thanks.
Example:
Number of: 10
Name Weight Total
a 10 100
b 5 150
** I now want to give the user the option to add another 3 columns and continue on**
#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