0

我正在UITableViewCell使用核心绘图库在我的图表上添加图表。目前它正在工作,但仅在最后一个单元格上添加图表,所有上面的单元格都保持空白。以下是我的cellForRowAtIndexPath方法代码。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSArray *objects=[[NSBundle mainBundle]loadNibNamed:@"CustomCell" owner:self options:nil];
    CustomCell *cell=(CustomCell *)[objects objectAtIndex:0];
    cell.graphView.hostedGraph=graph;
    [graph reloadData];
     return cell;

}

我检查过断点图不为空。任何人都可以帮我解决我在哪里错过了窍门吗?

4

2 回答 2

0

不要忘记添加

return cell;  

在方法结束时。

于 2013-06-03T09:05:40.240 回答
0

嘿,喜欢这样...

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
    static NSString *cellId=@"cellID";
    CustomCell  *cell=[tableView dequeueReusableCellWithIdentifier:cellId];
    NSArray *objects=[[NSBundle mainBundle]loadNibNamed:@"CustomCell" owner:self options:nil];
         cell=[objects objectAtIndex:0];
        cell.graphView.hostedGraph=graph;
        [graph reloadData];
         return cell;
    }
于 2013-06-03T11:00:58.517 回答