2

我已经下载了示例项目并尝试过,发现了一个问题。我运行了HandlingSelection项目,它运行良好,但我更改了代码

lineSeries.selectionMode = SChartSelectionPoint;

然后每次我触摸 2013 年的蘑菇时,APP 都会抛出异常。

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSMutableOrderedSet addObject:]: object cannot be nil'
*** First throw call stack:
4

1 回答 1

1

我遇到了同样的问题,刚刚解决了它。这将是您的

- (void)sChart:(ShinobiChart *)chartIn toggledSelectionForPoint:(SChartDataPoint *)dataPoint inSeries:(SChartSeries *)series atPixelCoordinate:(CGPoint)pixelPoint

将查看不正确的索引。这可以通过使用来解决index = 0;

(或您拥有的任何索引)

在你的

- (SChartSeries*)sChart:(ShinobiChart*)chart seriesAtIndex:(int)index method
于 2013-08-30T11:23:06.713 回答