When i run this code and press the "next" button. i get a bad excess error. What i want it to do is to check if what the user enters compares with the index of a given Label which changes every time the user enters the correct answer. For example: naam.text =@"Natriumfluoride". Then formule.text has to have the same index in "formules" as in "namen".
-(IBAction)next:(id)sender {
if ([formule.text isEqualToString:[formules objectAtIndex:x]]) {
x = arc4random() % x;
naam.text = [namen objectAtIndex:x];
}
}
- (void)viewDidLoad
{
[super viewDidLoad];
formules = [NSMutableArray arrayWithObjects:@"NaNO3",@"NaCH3COO",@"NaCl",@"NaBr",@"NaI",@"Na2SO4",@"NaF",@"Na2S",@"NaOH",@"Na2SO3",@"Na2CO3",@"Na3PO4",@"Na2O",nil];
namen = [NSMutableArray arrayWithObjects:@"Natriumnitraat",@"Natriumacetaat",@"Natriumchloride",@"Natriumbromide",@"Natriumjodide",@"Natriumsulfaat",@"Natriumfluoride",@"Natriumsulfide",@"Natriumhydroxide",@"Natriumsulfiet",@"NatriumCarbonaat",@"Natriumfosfaat",@"Natriumoxide", nil];
// Do any additional setup after loading the view from its nib.
x = arc4random() % [formules count];
naam.text = [namen objectAtIndex:x];
}
Anyone knows what my problem is and how to fix it?