先pop再push,界面出不来

ChatViewController *vc = [[ChatViewController alloc] init];
//先pop再push
NSMutableArray *arrView = [NSMutableArray arrayWithArray:self.navigationController.viewControllers];
int index = (int)[arrView indexOfObject:self];
[arrView removeObjectAtIndex:index];
[arrView addObject:vc];
[self.navigationController setViewControllers:arrView animated:YES];

你可能感兴趣的:(其他,界面push)