我在类中的 Core Plot 方法中遇到NSAssert
异常:positionForLowerBound:lowerBound upperBound:
CPTConstraintsFixed.m
[_CPTConstraintsFixed positionForLowerBound:upperBound:],/Users/AR/Downloads/core-plot/framework/Source/_CPTConstraintsFixed.m:79
崩溃发生在带有断言的代码行中:lowerBound must be less than or equal to upperBound
。
这是我的堆栈跟踪:
我正在使用具有以下设置的条形图:
x.axisConstraints = [CPTConstraints constraintWithLowerOffset:0.0];
relativePlotSpace.xRange = [CPTPlotRange
plotRangeWithLocation:CPTDecimalFromDouble(xAxisStart)
length:CPTDecimalFromDouble(xAxisLength)];
我为xAxisLength = 6
和提供的值xAxisStart = -0.5
。
您对导致此错误的原因有什么建议吗?
谢谢!