我正在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;
}
我检查过断点图不为空。任何人都可以帮我解决我在哪里错过了窍门吗?