gujjula / core-plot

Automatically exported from code.google.com/p/core-plot
0 stars 0 forks source link

Set globalXRange/globalYRange after xRange/yRange freeze/crash iPad device (ios 3.2) #249

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Set globalXRange/globalYRange after xRange/yRange

What is the expected output? What do you see instead?
- Runs fine under simulator, but will crash/freeze iPad device (ios 3.2)
- Set globalXRange/globalYRange before xRange/yRange solve the problem
eg, following code solve the issue
plotSpace.globalXrange = ...;
plotSpace.xRange = ...;

following code reproduce the problem:
plotSpace.xRange = ...;
plogSpace.globalXRange = ...;

What version of the product are you using? On what operating system?
- IOS SDK 4.1 / iPad (ios 3.2)
- Issue occurs on both Core Plot 0.22 and latest source checkout (2011-01-26)

Original issue reported on code.google.com by myshi...@gmail.com on 26 Jan 2011 at 5:40

GoogleCodeExporter commented 9 years ago
I just made some changes in CPXYPlotSpace. Pull the latest source and try it. 
Does this fix the issue?

Original comment by eskr...@mac.com on 12 Feb 2011 at 4:00

GoogleCodeExporter commented 9 years ago

Original comment by eskr...@mac.com on 22 May 2011 at 6:45