我很难弄清楚我的代码到底有什么错误。它说:
reason: '*** -[__NSArrayI objectAtIndex:]: index 3 beyond bounds [0 .. 2]'
这是应用程序崩溃的部分。
NSString *keyTemp = [[NSString alloc] initWithFormat:@"Wit%d",indexPath.section+1];
NSArray *arrTemp;
if ([userStandards objectForKey:keyTemp] == nil || [[userStandards objectForKey:keyTemp] count]==3) {
if ([witDict objectForKey:keyTemp] == nil) {
arrTemp = [[NSArray alloc] initWithObjects:@"",@"",@"",@"",@"",@"",nil];
} else {
arrTemp = [[NSArray alloc] initWithArray:[witDict objectForKey:keyTemp]];
}
cell.inputTextArea.text = [NSString stringWithFormat:@"Name: %@\nPhone: %@\nEmail: %@\nCity/State: %@\nZip: %@\nComments: %@",[arrTemp objectAtIndex:0],[arrTemp objectAtIndex:1],[arrTemp objectAtIndex:2], [arrTemp objectAtIndex:3], [arrTemp objectAtIndex:4], [arrTemp objectAtIndex:5]];
} else {
arrTemp = [[NSArray alloc] initWithArray:[userStandards objectForKey:keyTemp]];
cell.inputTextArea.text = [NSString stringWithFormat:@"Name: %@\nPhone: %@\nEmail: %@\nCity/State: %@\nZip: %@\nComments: %@",[arrTemp objectAtIndex:0],[arrTemp objectAtIndex:1],[arrTemp objectAtIndex:2], [arrTemp objectAtIndex:3], [arrTemp objectAtIndex:4], [arrTemp objectAtIndex:5]];
}