CLLocation (CoreLocation フレームワーク) を使用して現在の速度を表示する iPhone アプリを作成しました。
- (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
ありがとう!