UIView animateWithDuration& UIView commitAnimations奇怪地停止工作

时间:2014-04-23 12:26:09

标签: ios objective-c animatewithduration commitanimations

我在我的应用上有一些动画:

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
navigasyonresmi.frame = CGRectMake((windowgenisligimiz-10)/4, 194, 10, 4);
[UIView setAnimationDelegate:self];
[UIView commitAnimations];

并且喜欢这个

[UIView animateWithDuration:0.30 animations:^
 {
     [resimlerimalani setAlpha:0.0];
     [digerdetaylar setAlpha:1.0];
 }
 completion:^(BOOL finished)
 {
    resimlerimalani.hidden=TRUE;
 }];

他们工作得很好,但是当我开始在我的应用程序上做某事时,比如当我访问我的图片页面时,我正在加载所有图片,一切正常,但发生了一些事情后(我不知道)知道它是什么)所有这些动画都停止工作,它们立即动画,而不是在一段时间内动画。

什么原因可以阻止整个UIView animateWithDuration& UIView代码中的commitAnimations?

0 个答案:

没有答案