我有这个代码
PlaceViewController *newView = [self.storyboard instantiateViewControllerWithIdentifier:@"PlaceView"];
[self presentViewController:newView animated:YES completion:nil];
而且我可以更改视图,但是当我返回此页面时,我会推送此视图,状态仍然存在。
我试着把这段代码:
[self.navigationController pushViewController:newView animated:YES];
但不做任何事情。
谢谢