自定义活动指示突然停止

时间:2013-10-04 14:32:54

标签: ios animation

我已经创建了自定义活动指示器:我有一个图像并旋转它。但有时它的动画会突然停止。 我尝试过一些创建动画的方法: [UIView animateWithDuration:]在completionBlock中重复动画, 增加变换角度并重复的计时器。

两者仍然无效。如果有很多数据库操作动画停止。

我还能做什么?

1 个答案:

答案 0 :(得分:0)

UIActivityIndicatorView *activityView=[[UIActivityIndicatorView alloc]     initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

    activityView.center=self.view.center;

    [activityView startAnimating];

    [self.view addSubview:activityView];

- (void)startupAnimationDone:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context
{
    [splashView removeFromSuperview];
}


http://nullpointr.wordpress.com/2012/02/27/ios-dev-custom-activityindicatorview/