4

我有一个显示图像的小 iOS5 应用程序。我单击图像以显示其信息。我希望信息在几秒钟后消失。有没有好的方法来做到这一点?

我总是可以实现另一个按钮操作,但这会更整洁..

谢谢!

4

1 回答 1

19

使用NSTimerperformSelector:withObject:afterDelay。这两种方法都要求您调用一个单独的方法,该方法实际上会进行淡出,这应该相当简单。

例子:

NS定时器

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

performSelector:withObject:afterDelay:

/* starts the animation after 3 seconds */
[self performSelector:@selector(fadeOutLabels) withObject:nil afterDelay:3.0f];

您将调用该方法fadeOutLabels (或任何您想调用的方法)

-(void)fadeOutLabels
{
    [UIView animateWithDuration:1.0 
                          delay:0.0  /* do not add a delay because we will use performSelector. */
                        options:UIViewAnimationCurveEaseInOut 
                     animations:^ {
                         myLabel1.alpha = 0.0;
                         myLabel2.alpha = 0.0;
                     } 
                     completion:^(BOOL finished) {
                         [myLabel1 removeFromSuperview];
                         [myLabel2 removeFromSuperview];
                     }];
}

或者您可以使用动画块来完成所有工作:

-(void)fadeOutLabels
{
    [UIView animateWithDuration:1.0 
                          delay:3.0  /* starts the animation after 3 seconds */
                        options:UIViewAnimationCurveEaseInOut 
                     animations:^ {
                         myLabel1.alpha = 0.0;
                         myLabel2.alpha = 0.0;
                     } 
                     completion:^(BOOL finished) {
                         [myLabel1 removeFromSuperview];
                         [myLabel2 removeFromSuperview];
                     }];
}
于 2012-04-10T21:59:31.320 回答