gpt4 book ai didi

ios - 尝试查看记录时,从结果类型为 'UITableViewCell *__strong' 的函数返回 'UITableView *' 的不兼容指针类型

转载 作者:行者123 更新时间:2023-11-28 20:14:11 25 4
gpt4 key购买 nike

我正在按以下方式将 SELECT 查询结果加载到 tableView 中,但我收到一条警告,提示指针类型不兼容。

我下面的代码有什么错误?

提前感谢您的建议

-(UITableView *)tableview : (UITableView *)tableview cellForRowAtIndexPath: (NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"cell";
UITableViewCell *cell = [tableview dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:CellIdentifier];
NSInteger locationRow = indexPath.row;
cell.textLabel.text = [appDelegate.nameArray objectAtIndex:locationRow];
return cell; // error comes here


}

最佳答案

函数的返回类型错误。它应该返回 UITableViewCell* 而不是 UITableView*

-(UITableViewCell*)tableview:(UITableView *)tableview cellForRowAtIndexPath: (NSIndexPath *)indexPath;

希望对您有所帮助!

关于ios - 尝试查看记录时,从结果类型为 'UITableViewCell *__strong' 的函数返回 'UITableView *' 的不兼容指针类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18764226/

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