myaIは、このコードを持っている:IOS:2のための委任方法のtableView
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (tableView == firstTableView){
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil){
cell = [[[UITableViewCell alloc]initWithStyle:UITableViewStylePlain reuseIdentifier:CellIdentifier] autorelease] ;
}
cell.textLabel.text = [myArray objectAtIndex:indexPath.row];
return cell;
}
}
テーブルビューがfirsttableviewある場合、私はチェックしますが、この方法はどのようにすることができ、「リターン」のセルを持っていないので、それは私に警告を与えます解決する?
あなたは何をしようとしているのか分かりません。 「このメソッドは「リターンセル」を持っていない」とはどういう意味ですか? –