菜鸟教程小白 发表于 2022-12-12 13:47:14

ios - 触摸 SChartColumnSeries 中的点时,ShinobiChart 抛出异常


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

<pre><code>lineSeries.selectionMode = SChartSelectionPoint;
</code></pre>

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

<pre><code>Terminating app due to uncaught exception &#39;NSInvalidArgumentException&#39;, reason: &#39;*** -: object cannot be nil&#39;
*** First throw call stack:
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我遇到了同样的问题,刚刚解决了。这将是你的</p>

<pre><code>- (void)sChart:(ShinobiChart *)chartIn toggledSelectionForPoint:(SChartDataPoint *)dataPoint inSeries:(SChartSeries *)series atPixelCoordinate:(CGPoint)pixelPoint
</code></pre>

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

<p>(或您拥有的任何索引)</p>

<p>在你的</p>

<pre><code>- (SChartSeries*)sChart:(ShinobiChart*)chart seriesAtIndex:(int)index method
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 触摸 SChartColumnSeries 中的点时,ShinobiChart 抛出异常,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18460389/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18460389/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 触摸 SChartColumnSeries 中的点时,ShinobiChart 抛出异常