3

我不知道我做错了什么,但cellForRowAtIndexPath表格视图的方法只被调用一次。

这是我的代码:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

     NSLog(@"--->%d",[collaboratoresdata count]);

    return [collaboratoresdata count];

}

当我的collaboratoresdata数组被填满时,我会打电话[_collaboratortblView reloadData]来重新加载表格视图。

我成功进入3NSLog(@"--->%d",[collaboratoresdata count]);cellForRowAtIndexPath只接到一次电话。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    // add a placeholder cell while waiting on table data

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil] autorelease];
    }
    cell.selectionStyle=UITableViewCellSelectionStyleNone;


    NSLog(@"tableView:%d",[indexPath row]);// i am getting 0 here than after its not calling

    return cell;

}
4

2 回答 2

0

检查单元格的高度,我认为这就是问题所在

于 2013-07-30T04:43:43.660 回答
0
please try to set height of cell manually(custom). So, if problem of cell height then it will be resolved. below method set cell height 30 pixels.

#pragma mark- TableView delegate Methods
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{ 
return 30.0f;
}
于 2013-07-30T04:50:51.070 回答