'UITableView dataSource必须从tableView返回一个单元格:cellForRowAtIndexPath:'XCode5

时间:2013-09-19 13:03:08

标签: iphone uitableview xcode5

我遇到了TableView的问题,我没有旧的Xcode版本,我只是在UITableView中创建基本单元格,但我得到了下一个错误。

'NSInternalInconsistencyException',原因:'UITableView dataSource必须从tableView返回一个单元格:cellForRowAtIndexPath:'

以下是.m

中的代码
  

// numero de secciones a definir

>-(NSInteger) numberOfSectionsInTableView: (UITableView*) tableView 
{
    return 1;
}

>// numero de celdas en total

>-(NSInteger) tableView : (UITableView *) tableView numberOfRowsInSection: (NSInteger)section 
{
      return 5;
}

>// formato de las celdas, títulos, imágenes...

>-(UITableViewCell *)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];

    }

>    // configure the cell...

    return cell;

}

有什么建议吗? THX

1 个答案:

答案 0 :(得分:0)

-(UITableViewCell *)tableView : (UITableView *) tableView cellForRowAtIndexPath:(NSIndexPath *) indexPath
在tableView上使用大写“V”