iPhone 核心图
我是 iPhone 开发的新手,任何人都可以帮助我在 iPhone 中仅使用三个值绘制曲线图
-(NSUInteger)numberOfRecordsForPlot:(CPPlot *)plot
{
NSLog(@"Array1-->%@",Array1);
return [Array1 count];
}
-(NSNumber *)numberForPlot:(CPPlot *)plot
field:(NSUInteger)fieldEnum
recordIndex:(NSUInteger)index
{
NSLog(@"Array1-->%@",Array1);
NSLog(@"marks1-->%@",marks1);
if(fieldEnum == CPScatterPlotFieldX)
{
return [Array1 objectAtIndex:index];
}
else
{
if(plot.identifier == @"X Squared Plot")
{
return [marks1 objectAtIndex:index];
}
}
}
,使用上面的代码绘制曲线图,但我每个数组中有很多值..但我想在每个数组中仅使用三个值进行绘图。
I am new to the iPhone development can anybody help me to draw curve chart in iPhone using only three values
-(NSUInteger)numberOfRecordsForPlot:(CPPlot *)plot
{
NSLog(@"Array1-->%@",Array1);
return [Array1 count];
}
-(NSNumber *)numberForPlot:(CPPlot *)plot
field:(NSUInteger)fieldEnum
recordIndex:(NSUInteger)index
{
NSLog(@"Array1-->%@",Array1);
NSLog(@"marks1-->%@",marks1);
if(fieldEnum == CPScatterPlotFieldX)
{
return [Array1 objectAtIndex:index];
}
else
{
if(plot.identifier == @"X Squared Plot")
{
return [marks1 objectAtIndex:index];
}
}
}
iploted curve chart using above code but i have many values in each array.. but i want plot using only three values in each array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将以下代码替换
为以下代码:
希望这会有所帮助!
Replace the following code:
with the following one:
Hope this helps!