Я не могу разгадать тайну моего исключения NSRangeException.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [_countyList count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"Inside masterview cellforrowatindexpath.\n");
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
cell.textLabel.text = [_countyList objectAtIndex:indexPath.row];
return cell;
}
Исключение выдается, когда у меня numberOfSectionsInTableView
возвращается 1 (должно быть 1 раздел), но когда я возвращаю 0 разделов, оно не выдает исключение (оно также не отображает мои данные),Когда код выполняется, он никогда не вызывает cellForRowAtIndexPath
.Отладчик приводит меня к основной функции, и я не могу видеть, где я получаю доступ к NSArray для моей жизни.
Любая помощь или советы по отладке будут с благодарностью ...