UINavigationControllerはViewControllerを左から右にプッシュすることを知っているので、ビューを右から左にプッシュする方法はありますか?戻るボタンのアニメーションのように。
今のところ私はこれを持っています:
[self.navigationController pushViewController:viewController animated:YES];
NSMutableArray
のnavigationControllerの配列からviewcontrollers
を作成し、現在のviewControllerの前に新しいviewControllerを挿入できます。次に、viewControllers配列をアニメーションなしで設定し、ポップバックします。
UIViewController *newVC = ...;
NSMutableArray *vcs = [NSMutableArray arrayWithArray:self.navigationController.viewControllers];
[vcs insertObject:newVC atIndex:[vcs count]-1];
[self.navigationController setViewControllers:vcs animated:NO];
[self.navigationController popViewControllerAnimated:YES];
これをお試し下さい
HomePageController *pageView = [[HomePageController alloc] initWithNibName:@"HomePageController_iPhone" bundle:nil];
CATransition *transition = [CATransition animation];
transition.duration = 0.45;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault];
transition.type = kCATransitionPush;
transition.subtype = kCATransitionFromLeft;
transition.delegate = self;
[self.navigationController.view.layer addAnimation:transition forKey:nil];
self.navigationController.navigationBarHidden = NO;
[self.navigationController pushViewController:pageView animated:NO];
Try this :
//Push effect in reverse way
CATransition* transition = [CATransition animation];
transition.duration = 0.75;
transition.type = kCATransitionPush;
transition.subtype = kCATransitionFromLeft;
[self.navigationController.view.layer addAnimation:transition forKey:kCATransition];
[self.navigationController pushViewController:vc animated:NO];
このコードは正常に動作しています。してみてください
CATransition *transition = [CATransition animation];
transition.duration = 0.3f;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionReveal;
[self.navigationController.view.layer addAnimation:transition forKey:nil];
[self.navigationController pushViewController:phoneServicesViewController animated:NO];
あなたは「後戻り」したいようです。これは、UINavigationController
インスタンスで3つのメソッドを使用して実現できます。
「ルート」コントローラーに戻るには:
-(NSArray *)popToRootViewControllerAnimated:(BOOL)animated
または、以前のコントローラーの1つに戻るには:
-(NSArray *)popToViewController:(UIViewController *)viewController animated:(BOOL)animated
または、以前にプッシュされたコントローラーに戻るには:
-(UIViewController *)popViewControllerAnimated:(BOOL)animated
私の意見では、ここでの最良の回答の改善です:
UIViewController *newVC = ...;
[self.navigationController setViewControllers:@[newVC, self] animated:NO];
[self.navigationController popViewControllerAnimated:YES];
最初のコントローラーに戻るには、Push to itを実行します。
@felixlamの回答に基づいて、このように動作するようにデフォルトのプッシュ/ポップメソッドをオーバーライドする「リバース」方向ナビゲーションコントローラーをアップグレードして作成しました。
class LeftPushNavigationController: BaseNavigationController {
override func viewDidLoad() {
super.viewDidLoad()
interactivePopGestureRecognizer?.isEnabled = false
}
override func pushViewController(_ viewController: UIViewController, animated: Bool) {
// If the Push is not animated, simply pass to parent
guard animated else { return super.pushViewController(viewController, animated: animated) }
// Setup back button
do {
// Hide original back button
viewController.navigationItem.setHidesBackButton(true, animated: false)
// Add new one
viewController.navigationItem.rightBarButtonItem = UIBarButtonItem(
image: #imageLiteral(resourceName: "iconBackReverse"),
style: .plain,
target: self,
action: #selector(self.pop)
)
}
// Calculate final order
let finalVCs = self.viewControllers + [viewController]
// Insert the viewController to the before-last position (so it can be popped to)
var viewControllers = self.viewControllers
viewControllers.insert(viewController, at: viewControllers.count - 1)
// Insert viewcontroller before the last one without animation
super.setViewControllers(viewControllers, animated: false)
// Pop with the animation
super.popViewController(animated: animated)
// Set the right order without animation
super.setViewControllers(finalVCs, animated: false)
}
override func popViewController(animated: Bool) -> UIViewController? {
// If the Push is not animated, simply pass to parent
guard animated else { return super.popViewController(animated: animated) }
guard self.viewControllers.count > 1 else { return nil }
// Calculate final order
var finalVCs = self.viewControllers
let viewController = finalVCs.removeLast()
// Remove the parent ViewController (so it can be pushed)
var viewControllers = self.viewControllers
let parentVC = viewControllers.remove(at: viewControllers.count - 2)
// Set the viewcontrollers without the parent & without animation
super.setViewControllers(viewControllers, animated: false)
// Create Push animation with the parent
super.pushViewController(parentVC, animated: animated)
// Set the right final order without animation
super.setViewControllers(finalVCs, animated: false)
// Return removed viewController
return viewController
}
@objc
private func pop() {
_ = popViewController(animated: true)
}
}
いいえ、右から左はナビゲーションスタックからビューコントローラーをポップするために予約されています。ただし、ビューを自分でアニメーション化することで、このような効果を得ることができます。何かのようなもの:
[UIView beginAnimations:@"rightToLeft" context:NULL];
CGRect newFrame = aView.frame;
newFrame.Origin.x -= newFrame.size.width;
aView.frame = newFrame;
[UIView commitAnimations];
ただし、これはナビゲーションコントローラに対して何も行いません。
Swift 5.
let pageView = TaskFolderListViewController.init(nibName: "HomePageController_iPhone", bundle: nil)
let transition = CATransition()
transition.duration = 0.45
transition.timingFunction = CAMediaTimingFunction(name: CAMediaTimingFunctionName.default)
transition.type = CATransitionType.Push
transition.subtype = CATransitionSubtype.fromLeft
self.navigationController?.view.layer.add(transition, forKey: kCATransition)
self.navigationController?.pushViewController(pageView, animated: false)
私は同じ問題を抱えていました、これが私がそれを解決した方法です
[self.navigationController popViewControllerAnimated:YES];
これは「戻る」に似ています。つまり、戻るボタンがクリックされ、前のページに移動した場合です。