我正在以下列方式加载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
}