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
}