我正在使用核心绘图库在我的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;
}
我已通过断点图检查不为空。任何人都可以帮助我,我在哪里错过了诀窍?
答案 0 :(得分:0)
不要忘记添加
return cell;
在方法结束时。
答案 1 :(得分: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;
}