0

这是我当前的代码,但它似乎只是在翻转视图 - 我希望它翻转,即翻转看不到它。我在 viewdidload 方法中这样做:

[UIView animateWithDuration:1.5 delay:0.0 options:UIViewAnimationOptionOverrideInheritedDuration animations:^{
        [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.alertView cache:YES];

    }completion:^(BOOL finished)
     {

     }];
4

1 回答 1

0

使用transitionFromView:toView:duration:options:completion:具有完整透明视图的方法作为'FromView'和你的alertView作为toView

于 2013-01-28T13:42:07.230 回答