I have a NSDictionary returning which I would like to have a row for each entry, however I also want a section above this section with only one etry, I am trying to do this with the code below but I keep getting an error when I go to enter the if statement.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// returns the number of rows per section based off each entry in letterDictionary
NSString *currentLetter = [sectionLetterArray objectAtIndex:section];
if (section == 1) {
return 1;
}
else
return [[letterDictionary objectForKey:currentLetter] count];
}
this is the error I recive when I try to set up the first section of the tableview.
2012-08-20 16:12:11.983 kPad[5681:907] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 1 beyond bounds [0 .. 0]'
*** First throw call stack:
(0x3686756b 0x36b4797f 0x367a856d 0x56c11 0x3793f8b7 0x37940c19 0x37940b6d 0x3794075d 0x5826d 0x57dfb 0x5569b 0x55ee9 0x5fd65 0x32d8bead 0x373f3ccb 0x5f6a5 0x61c99 0x5f531 0x5ef6f 0x5b443 0x374105b5 0x37361991 0x373618ad 0x32ccaacf 0x32cca1bb 0x32cf2323 0x367ae2e1 0x32cf2783 0x32c56c65 0x36838143 0x368379a9 0x368366ef 0x367b4c1d 0x367b4aa9 0x3967833b 0x3791e535 0x4edd5 0x3557fb20)
libc++abi.dylib: terminate called throwing an exception
the issue is is that there can be several sections and it is dynamic.. thats why i use an if else.. I hope this is the right thing to do. its just i keep reciving the error.

numberOfSectionsInTableView:method and what it returns in itsreturnstatement it must be 1. And yes the section index is starting with 0 not with 1 :) – Wolvorin Aug 20 '12 at 5:31