gpt4 book ai didi

objective-c - 来自 UITableViewController 的 NSRangeException

转载 作者:行者123 更新时间:2023-11-29 11:18:12 26 4
gpt4 key购买 nike

我无法解开我的 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。
任何帮助或调试技巧将不胜感激...

最佳答案

如果您正在使用 Storyboard,请查看这篇文章。

iOS Xcode 4.2 Master-Detail Application Template Throwing NSRangeException

您描述的问题与那个问题相似。

关于objective-c - 来自 UITableViewController 的 NSRangeException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8484392/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com