我想動畫我的UIProgressView
在10秒內從0進步到1。UIView animateWithDuration和UIProgressView setProgress
代碼:除了完成
[UIView animateWithDuration:10.0 animations:^{
[_myProgressView setProgress:1 animated:YES];
} completion:(BOOL finished)^{
if (finished) NSLog(@"animation finished);
}];
動畫工作正常和NSLog
總是立即調用。我想嘗試animateWithDuration: withDelay:
但延遲不被尊重並立即執行。
有沒有人遇到同樣的問題?
感謝您的幫助。
我也面臨同樣的問題,我還沒有找到一些解決方案,以一種好的方式來激發進步。你有沒有發現任何不落後的解決方案? – EmilDo
和Emilio一樣。你有一個很好的解決方案 – osrl
http:// seanallen。co/posts/animated-progress-bar – iDev750