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;

}

ブレークポイント グラフが null ではないことを確認しました。トリックが欠けている場所で誰かが私を助けることができますか?

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 に答える