这是经典动画,但我需要知道它何时真正完成。谢谢
UIImageView* campFireView = [[UIImageView alloc] initWithFrame:self.view.frame];
campFireView.frame = CGRectMake(255.0f,0.0f,512.0f,384.0f);
campFireView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"wish_launch_up_low_00000.png"],
[UIImage imageNamed:@"wish_launch_up_low_00001.png"],
[UIImage imageNamed:@"wish_launch_up_low_00002.png"],
[UIImage imageNamed:@"wish_launch_up_low_00003.png"],
[UIImage imageNamed:@"wish_launch_up_low_00004.png"],
[UIImage imageNamed:@"wish_launch_up_low_00005.png"],
,nil];
campFireView.animationDuration = 0;
campFireView.animationRepeatCount = 1;
[campFireView startAnimating];
[self.view addSubview:campFireView];