如何在一秒钟后隐藏图像

时间:2011-05-12 09:17:34

标签: cocoa-touch ios core-animation

我想在一秒钟后隐藏图像,因为翻转动画结束。请有人帮助我。

2 个答案:

答案 0 :(得分:0)

假设您需要在从viewDidLoad加载后隐藏,请在viewDidLoad中声明以下内容;

[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(hideYourImage) userInfo:nil repeats:NO];

-(void)hideYourImage
{
    [yourImageView setHidden:TRUE];
}

你在这里。希望它有所帮助。

答案 1 :(得分:0)

如果您正在使用UIView动画进行翻转动画,那么您可以指定动画完成的代码。

[UIView animateWithDuration:0.2

 animations:^{// Put your flip animation}

 completion:^(BOOL finished){ [imageView removeFromSuperview]; }];

否则,计时器方法也会这样做。