0

私は 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];

アニメーションでビューを非表示にするボタンを追加しましたが、機能しませんか??

4

1 に答える 1

0
  1. ビューにジェスチャ認識機能を追加します。
  2. コールバックで、ViewControllerをポップします。

警告:これは非標準のUIです。標準のナビゲーションバーと戻るボタンを使用することをお勧めします。

于 2013-02-14T15:27:49.103 に答える