在iPhone上绘制简单的图表

发布于 2024-10-10 08:38:48 字数 162 浏览 5 评论 0原文

有谁知道现有的代码可以在我的 iPhone 应用程序中为我绘制图表吗?我只需要一个简单的线图,没有标签或标题,甚至数据的轴标签。

或者有人知道从哪里开始以便我可以学习如何画这样的东西吗?我从未处理过 iPhone 的实际图形。到目前为止,我所有的应用程序都只是基于图像。

谢谢!

Does anyone know of any existing code that will draw a graph for me in my iPhone application? I just need a simple line graph without labels or a title or even axis labels for the data.

Or does anyone have ideas about where to start so that I can learn how to draw such a thing? I've never dealt with actual graphics for the iPhone. All my applications are just image based until now.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帝王念 2024-10-17 08:38:48

试用 Core Plot 框架 http://code.google.com/p/core-plot/

Try out the Core Plot framework http://code.google.com/p/core-plot/

稚气少女 2024-10-17 08:38:48

如果您尝试自己绘制,则可以使用 Path 函数在 Quartz 中的上下文中绘制

CGContextBeginPath(context);
CGContextMoveToPoint(context, startX, startY);
CGContextAddLineToPoint(context, nextX, nextY);
// [...] and so on, for all line segments
CGContextSetLineWidth(context, 2);
CGContextSetStrokeColorWithColor(context, [[UIColor blackColor] cgColor]);
CGContextStrokePath(context);

。有很多示例代码可以处理 Quartz 中的上下文和绘制。

但可能有一些库可以帮助您绘制图表...不过,其他人必须帮助您,而不是我的那杯茶:)

If you would attempt to draw yourself, you'd use the Path functions to draw in a context in Quartz

CGContextBeginPath(context);
CGContextMoveToPoint(context, startX, startY);
CGContextAddLineToPoint(context, nextX, nextY);
// [...] and so on, for all line segments
CGContextSetLineWidth(context, 2);
CGContextSetStrokeColorWithColor(context, [[UIColor blackColor] cgColor]);
CGContextStrokePath(context);

There is a lot of sample code to deal with context and drawing in quartz.

But there are probably some libraries to facilitate drawing graphs... someone else would have to help you with those though, not my cup of tea :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文