无法始终更新 Core-Plot 中的 CPXYPlotSpace
我正在将 Core-Plot 用于 iPhone 应用程序。当用户更改记录数时,我尝试更新 CPXYPlotSpace。 plotSpace 在标题中定义。当视图加载时,我设置图表。当用户更改数据范围时,它有时会起作用。它在范围更改的前 3 或 4 次中起作用,之后我得到一个释放的指针未分配
这是我用来更新 CPXYPlotSpace 的代码:
if(plotSpace)
[plotSpace release];
plotSpace = (CPXYPlotSpace *)graph.defaultPlotSpace;
plotSpace.xRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromFloat(0)
length:CPDecimalFromFloat(recordsLimit)];
plotSpace.yRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromFloat(-25)
length:CPDecimalFromFloat(100)];
看起来像是一个踩踏问题?
I'm using Core-Plot for an iPhone application. I'm trying to update the CPXYPlotSpace when the number of records is changed by the user. plotSpace is defined in the header. When the view loads, I setup the chart. When the user change the range of the data it works soem times. It works the first 3 or 4 times that the range is changed, after that I got a pointer being freed was not allocated
This is the code I'm using to update the CPXYPlotSpace:
if(plotSpace)
[plotSpace release];
plotSpace = (CPXYPlotSpace *)graph.defaultPlotSpace;
plotSpace.xRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromFloat(0)
length:CPDecimalFromFloat(recordsLimit)];
plotSpace.yRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromFloat(-25)
length:CPDecimalFromFloat(100)];
Looks like a tread issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要释放情节空间。它由图表拥有。
Don't release the plot space. It is owned by the graph.