在同一操作中弹出和推送视图控制器

时间:2011-07-29 12:08:47

标签: ios uinavigationcontroller pushviewcontroller popviewcontroller

可以从导航堆栈中弹出一个视图,然后再将其直接推到它上面吗?

我正在尝试为此部分实现平面层次结构,并希望有一个分段控制器,但我不能让分段控制器看起来像我想要的任何东西,因此我为什么要尝试使用导航控制器。

单击按钮时,我执行了以下代码:

[[self navigationController] popViewControllerAnimated:YES];
        MapsViewController *aViewController = [[MapsViewController alloc]
                                               initWithNibName:@"MapsViewController" bundle:nil];
[self.navigationController pushViewController:aViewController animated:NO];
[aViewController release];

它正在弹出,但没有任何推动的迹象!任何帮助将不胜感激。

7 个答案:

答案 0 :(得分:40)

 MapsViewController *aViewController = [[MapsViewController alloc]
                                        initWithNibName:@"MapsViewController" bundle:nil];
     // locally store the navigation controller since
     // self.navigationController will be nil once we are popped
 UINavigationController *navController = self.navigationController;

     // retain ourselves so that the controller will still exist once it's popped off
 [[self retain] autorelease];

     // Pop this controller and replace with another
 [navController popViewControllerAnimated:NO];//not to see pop

 [navController pushViewController:aViewController animated:YES];//to see push or u can change it to not to see.

或者

 MapsViewController *aViewController = [[MapsViewController alloc]
                                        initWithNibName:@"MapsViewController" bundle:nil];


UINavigationController *navController = self.navigationController;

//Get all view controllers in navigation controller currently
NSMutableArray *controllers=[[NSMutableArray alloc] initWithArray:navController.viewControllers] ;

//Remove the last view controller
[controllers removeLastObject];

//set the new set of view controllers
[navController setViewControllers:controllers];

//Push a new view controller
[navController pushViewController:aViewController animated:YES];

答案 1 :(得分:30)

取自https://stackoverflow.com/users/1619554/tomer-peled的解决方案,以便其他人可以更轻松地找到它。

这似乎是iOS8的最佳方式:

UIViewController *newVC = [[UIViewController alloc] init]; // Replace the current view controller 
NSMutableArray *viewControllers = [NSMutableArray arrayWithArray:[[self navigationController] viewControllers]];
[viewControllers removeLastObject]; 
[viewControllers addObject:newVC]; 
[[self navigationController] setViewControllers:viewControllers animated:YES];

答案 2 :(得分:23)

在斯威夫特:

let newVc = UIViewController()
var vcArray = self.navigationController?.viewControllers
vcArray!.removeLast()
vcArray!.append(newVc)
self.navigationController?.setViewControllers(vcArray!, animated: false)

如果故事板中存在newVc:

let storyboard = UIStoryboard(name: "Main", bundle: nil)
let newVc = storyboard.instantiateViewControllerWithIdentifier("YourViewControllerIdentifier") as! UIViewController
var vcArray = self.navigationController?.viewControllers
vcArray!.removeLast()
vcArray!.append(newVc)
self.navigationController?.setViewControllers(vcArray!, animated: false)

答案 3 :(得分:8)

Swift 4:

self.navigationController.setViewControllers[]..对我不起作用。但我能够通过在实例变量中保存导航控制器并执行推/弹操作来解决问题。因此,能够无故障地更改控制器。

  guard let navigationVC = self.navigationController else { return }  
    navigationVC.popViewController(animated: false)
    navigationVC.pushViewController(myNewVC, animated: false)

答案 4 :(得分:4)

您可以使用此代码弹出或推送您的控制器。

对于目标c

bool alreadyPushed = false;    
//Check if the view was already pushed
NSMutableArray *viewControllers;
if ( (viewControllers = [NSMutableArray arrayWithArray:self.navigationController.viewControllers])) {

    for (UIViewController *aViewController in viewControllers) {

        if ([aViewController isKindOfClass:[YourControllerName class]]) {
            NSLog(@"pop your view controller");
            [self.navigationController popToViewController:aViewController animated:YES];
            alreadyPushed = true;
            break;
        }
    }
}

//Push Fresh View
if( alreadyPushed == false) {

    NSLog(@"push your view controller");
    YourControllerName *YourControllerObject = [[YourControllerName alloc]initWithNibName:@"YourNibName" bundle:nil];        
    [self.navigationController pushViewController:YourControllerObject animated:YES];

}

对于Swift

  var alreadyPushed = false            
        //Check if the view was already pushed
        if let viewControllers = self.navigationController?.viewControllers {
            for viewController in viewControllers {                    
                if let viewController = viewController as? YourControllerName {                                               
                    self.navigationController?.popToViewController(viewController, animated: true);                        
                    print(" Push Your Controller")
                    alreadyPushed = true
                    break                        
                }
            }
        }                        
        if alreadyPushed == false {                
            let YourControllerObject = self.storyboard?.instantiateViewControllerWithIdentifier("YourControllerIdentifire") as! YourControllerName             
            self.navigationController?.pushViewController(YourControllerObject, animated: true)

        }

答案 5 :(得分:0)

BOOL Present = NO;

fifthViewController * fifthVC = [self.storyboard instantiateViewControllerWithIdentifier:@"homeController"];


for (UIViewController* viewController in self.navigationController.viewControllers) {

    //This if condition checks whether the viewController's class is MyGroupViewController
    // if true that means its the MyGroupViewController (which has been pushed at some point)
    if ([viewController isKindOfClass:[fifthViewController class]] )
    {

        // Here viewController is a reference of UIViewController base class of MyGroupViewController
        // but viewController holds MyGroupViewController  object so we can type cast it here
        fifthViewController *groupViewController = (fifthViewController*)viewController;
        [self.navigationController popToViewController:groupViewController animated:NO];
        Present=YES;
    }

}

if(Present==NO)
{
    [self PushAnimation];
    [self.navigationController pushViewController:fifthVC animated:NO];

    Present=YES;
}

答案 6 :(得分:0)

Swift 3.0

如果有人想深入视图层次结构:

                //Go back to desired viewController and then push another viewController
                var viewControllers = self.navigationController!.viewControllers
                while !(viewControllers.last is MyViewControllerClass) {
                    viewControllers.removeLast()
                }
                // go to new viewController
                let anotherViewController = AnotherViewController(nibName: "AnotherViewController", bundle: nil)
                viewControllers.append(anotherViewController)
                self.navigationController?.setViewControllers(viewControllers, animated: true)