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 ではないことを確認しました。トリックが欠けている場所で誰かが私を助けることができますか?