-1

はい、このエラーのある他のすべての投稿を既に見ました。

これが私のコードです: ここでどこが間違っていますか?

- (UITableViewCell *)TableView:(UITableView *)myTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [_myTableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

cell.textLabel.text = [_cellArray objectAtIndex: indexPath.row];
return cell;
}
4

2 に答える 2

3

Your method name is wrong. Replace TableView with tableView. To prevent this kinds of error, once you set your datasource or delegate, you should use control + Space, so Xcode can help you by completing the correct method name.

于 2013-04-30T17:13:16.237 に答える