如何在 iPhone 应用程序中显示图表

发布于 2025-01-06 20:11:44 字数 1540 浏览 2 评论 0原文

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

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

发布评论

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

评论(4

冷…雨湿花 2025-01-13 20:11:44

您可以使用quartz 2d 自己绘制图表,而不是使用需要互联网连接的核心图或google api。这就是我为我的应用程序所做的。 CorePlot 安装起来有点棘手,而且对于小型项目来说似乎很复杂。

http://buildmobile.com/creating-a-graph- with-quartz-2d-part-3/

自己绘制图表的优点是您可以学习使用 Apple 的标准绘图 api。祝你好运

Instead of using core plot or an google api that needs an internet connection you can draw a graph yourself using quartz 2d. That's what I did for my app. CorePlot was kind of tricky to install and it seems complicated for small projects.

http://buildmobile.com/creating-a-graph-with-quartz-2d-part-3/

The advantage of drawing the graphs yourself is that you learn to use the standard drawing apis from Apple. Good luck

薔薇婲 2025-01-13 20:11:44

最简单的方法是使用谷歌图表 API,我在所有应用程序中都使用它。

请参阅此处的教程,

http://code.google.com/apis/ Chart/image/docs/making_charts.html

只需发出一个 HTTP 请求,您就可以直接根据您的要求获取图像。

The easiest way is to use google chart api, I use this in all my apps.

see the tutorial here,

http://code.google.com/apis/chart/image/docs/making_charts.html

you will directly get image as per your requirement just by making one HTTP Request.

你的笑 2025-01-13 20:11:44

我使用了Core Plot,它很容易使用,并且几乎所有图表都有示例...

I used Core Plot, it's easy to use and there are samples for almost all the graphs...

花辞树 2025-01-13 20:11:44

如果您想使用 Objective-C 或 Swift 在 iPhone 应用程序中绘制图表,可以使用 SciChart,它支持超过20 种流行的图表类型,包括柱形图和条形图。

scichart 网站上有一些非常好的示例,用于在 Objective-C 和 Swift 中绘制图表类型。

例如:

示例也托管在 Github 上 并且还有 教程 帮助您学习这个强大的工具。

输入图片此处描述

声明一下,我是 scichart 项目的技术负责人

If you want to draw graphs in iPhone applications using Objective-C or Swift, you can use SciChart, which supports over 20 popular chart types, including Column and Bar.

There are some really nice examples over at the scichart website for drawing chart types in Objective-C and Swift.

For instance:

Examples are also hosted on Github and there are also tutorials to help you learn this powerful tool.

enter image description here.

As a disclosure, i am the tech lead on the scichart project

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