我已经下载了示例项目并尝试了,并发现了一个问题。我运行了HandlingSelection项目,它运行良好,但我更改了代码
lineSeries.selectionMode = SChartSelectionPoint;
每当我触及2013年的蘑菇时,APP都会抛出异常。
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSMutableOrderedSet addObject:]: object cannot be nil'
*** First throw call stack:
答案 0 :(得分:1)
我遇到了同样的问题并且刚刚解决了它。这将是你的
- (void)sChart:(ShinobiChart *)chartIn toggledSelectionForPoint:(SChartDataPoint *)dataPoint inSeries:(SChartSeries *)series atPixelCoordinate:(CGPoint)pixelPoint
将查看错误的索引。可以使用index = 0;
(或您拥有的任何索引)
中的
- (SChartSeries*)sChart:(ShinobiChart*)chart seriesAtIndex:(int)index method