Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为 iPhone 中的心率监测器应用程序绘制图表(ECG 类型)。我不想使用核心情节,但喜欢用石英开发。我正在从蓝牙设备接收心跳值,现在我想根据从 BLE 接收到的值创建图表?
谢谢
第一种简单的方法是使用在您的视图UIBezierPath中画一条线。drawRect:您必须将收到的值转换为视图的坐标系,然后创建一个实例,UIBezierPath在其中添加所有相关点addLineToPoint:。最后你打电话[bezierPath stroke]来实际画线。您可以为您的 ViewController 创建一个 Datasource-Protocol 并reload在您的视图上创建一个方法,该方法会在收到新数据时触发视图重绘。
UIBezierPath
drawRect:
addLineToPoint:
[bezierPath stroke]
reload
从下面的 url 下载示例代码 :)
示例代码在这里
不要忘记+1
谢谢,
:)