我一直在尝试使用以下建议在scatterPlot中创建一个间隙:
iOS Scatter core plot with a gap

我想通过创建数据绘制2条垂直线:

NSMutableArray<NSDictionary *> *contentArray = [[NSMutableArray alloc] init];

        [contentArray addObject:@{ @"x": _startPointValue, @"y": _startValue }];
        [contentArray addObject:@{ @"x": _startPointValue, @"y": @5 }];

        //add null points not to link the 2 lines
        [contentArray addObject:@{ @"x": _endPointValue, @"y": [NSNull null] }];
        [contentArray addObject:@{ @"x": _endPointValue, @"y": _endValue }];
        [contentArray addObject:@{ @"x": _endPointValue, @"y": @5 }];

        _verticalLinesData = contentArray;


但我收到错误:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSNull doubleValue]: unrecognized selector sent to instance 0x1a0f0e490'


当我用[NSNull null]注释掉该行时,将正确绘制这些行(但已连接)。

可能是什么原因。我不在其他地方使用_verticalLinesData(仅在coreplot的数据源方法中使用)。

编辑:
我的数据源方法:

-(NSUInteger)numberOfRecordsForPlot:(CPTPlot *)plot {
if ( [plot.identifier isEqual:VERTICALLINESPLOTID] ) {
        return _verticalLinesData.count;
    }
    else {
        return 0;
    }
}

-(id)numberForPlot:(CPTPlot *)plot field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)index {
    NSString *key = (fieldEnum == CPTScatterPlotFieldX ? @"x" : @"y");
    NSNumber *num = [[NSNumber alloc] init];
   if ([plot.identifier isEqual:VERTICALLINESPLOTID] ) {
        num = _verticalLinesData[index][key];
        num = @([num doubleValue]);
    }
    else {
        num = 0;
    }
    return num;
}

最佳答案

您可以直接从_verticalLinesData返回值。删除行num = @([num doubleValue]);,它将按预期工作。

关于ios - 带有间隙-[NSNull doubleValue]的ScatterPlot:无法识别的选择器已发送到实例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36886670/

10-11 16:01