Flip View Iphone

后端 未结 3 659
感动是毒
感动是毒 2020-12-01 01:08

please consider the code below, and tell me what I\'m doing wrong.

I want to flip between two UIViews.

Somehow, when I flip away from the initial view, I jus

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-01 01:41

    After iOS 4.0, you can flip between views with this:

    [UIView transitionFromView:sourceView toView:destinationView duration:0.35f options:UIViewAnimationOptionTransitionFlipFromRight completion:^(BOOL finished) {
        NSLog(@"I just flipped!");
    }];
    

    As Jason mentioned, you'll need this to occur within a container view.

提交回复
热议问题