我创建了一个 iPhone 应用程序,它使用 CLLocation(CoreLocation 框架)显示您当前的速度。
- (void)locationUpdate:(CLLocation *)location
{
speedLabel.text = [NSString stringWithFormat:@"%f", [location speed]];
}
这是我在标签中显示当前速度的代码。我想添加一条带有你速度起伏的小动画线(它会自动工作)。
结果应该是这样的:http ://cl.ly/image/0j2U0D462600
我认为这应该可以通过 CGContextAddLine (CoreGraphics) 实现吗?
我看到了这个问题,但我仍然不清楚: How to Draw a line pixel by pixel using objective C
谢谢!