2
有誰知道如何動畫像下面的圖像雷達動畫? alt text http://img197.imageshack.us/img197/7124/circle0.png如何在iPhone SDK中做雷達動畫?
隨着它向外擴展嗎?我必須使用Quartz或其他方式繪製圓圈?
有誰知道如何動畫像下面的圖像雷達動畫? alt text http://img197.imageshack.us/img197/7124/circle0.png如何在iPhone SDK中做雷達動畫?
隨着它向外擴展嗎?我必須使用Quartz或其他方式繪製圓圈?
要繪製靜態圈在UIView
子類:
- (void)drawRect:(CGRect)rect
{
CGRect rect = { 0.0f, 0.0f, 100.0f, 100.0f };
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextSetLineWidth(context, 2.0f);
CGContextAddEllipseInRect(context, rect);
CGContextStrokePath(context);
}
從那裏,你只需要一個定時器設置動畫,改變矩形的大小,並添加更多的圈。