【发布时间】:2012-12-08 20:24:00
【问题描述】:
我有这个代码
PlaceViewController *newView = [self.storyboard instantiateViewControllerWithIdentifier:@"PlaceView"];
[self presentViewController:newView animated:YES completion:nil];
我可以更改视图,但我会推送此视图,因为当我返回此页面时,状态仍然存在。
我试着把这段代码:
[self.navigationController pushViewController:newView animated:YES];
但什么都不做。
谢谢
【问题讨论】:
标签: ios uiview storyboard xcode4.5 pushviewcontroller