-1
我正在繪製條形圖,除了dosent有動畫外,它工作正常。例如:填充顏色0-50%。 我使用簡單的drawRect方法,在此提請是我的代碼:iOS中的動畫條形圖
- (void)drawRect:(CGRect)rect
{
CGFloat height = self.bounds.size.height;
CGContextRef context = UIGraphicsGetCurrentContext();
// CGContextClearRect(context, rect);
CGContextSetFillColorWithColor(context, [self colorWithR:149 G:21 B:29 A:1].CGColor);
CGFloat barWidth = 52;
int count = 0;
NSNumber *num = [NSNumber numberWithFloat:graphValue];
CGFloat x = count * (barWidth + 10);
CGRect barRect = CGRectMake(x, height - ([num floatValue] * height), barWidth, [num floatValue] * height);
CGContextAddRect(context, barRect);
count++;
CGContextFillPath(context);
}
請幫助我知道的簡單的方法來添加動畫。
那不是你的*代碼。您逐字從[我的答案](http://stackoverflow.com/a/17175206/643383)複製到[您的上一個問題](http://stackoverflow.com/q/17174468/643383),沒有那麼多給予好評。 – Caleb
對不起,我粘貼了錯誤的代碼。現在更新我的代碼。 – iPhoneDev