私は 2 つの viewController を持っています: FirstViewController と SecondViewController
ビューが右から左に来るアニメーションを作成します。
SecondViewController を右にスイープするときに、FirstViewController を非表示にして表示したい
アニメーション作品 コードあり
SecondViewController *secondViewController = [[SecondViewController alloc] initWithNibName:@"PlayListController" bundle:nil];
// Set up view2
secondViewController.view.frame = self.view.frame;
secondViewController.view.center = CGPointMake(self.view.center.x + CGRectGetWidth(self.view.frame), self.view.center.y);
[self.view.superview addSubview:secondViewController.view];
// Animate the push
[UIView beginAnimations: nil context: NULL];
[UIView setAnimationDelegate: self];
[UIView setAnimationDidStopSelector: @selector(pushAnimationDidStop:finished:context:)];
secondViewController.view.center = self.view.center;
self.view.center = CGPointMake(self.view.center.x - CGRectGetWidth(self.view.frame), self.view.center.y);
[UIView commitAnimations];
アニメーションでビューを非表示にするボタンを追加しましたが、機能しませんか??