gpt4 book ai didi

objective-c - Objective-C - 加载表格 View 单元格时崩溃

转载 作者:行者123 更新时间:2023-11-28 23:15:56 24 4
gpt4 key购买 nike

我已经在 objectiveC 中编写了这个方法(适用于 iOS,但并不重要)。调用此方法时,我的应用程序崩溃了。我将所有这些都写在我的 .m 文件中。我无法找出崩溃的原因......

-(UITableViewCell *)myCell:(UITableViewCell *)cell 
forRowIndex:(NSIndexPath *)indexPath
{
//customize the cell.
return cell;
}

- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellId = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellId];
if(cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ResultsOne" owner:self options:nil];
cell = self.resultsOne;
}
cell = [self myCell:cell:indexPath]; //code crashes here
return cell;
}

我做错了什么?

最佳答案

你需要这样写方法调用:

cell = [self myCell:cell forRowIndex:indexPath];

关于objective-c - Objective-C - 加载表格 View 单元格时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6368865/

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