如何从ToolBar,BarButtonItem推送视图

时间:2011-07-29 11:00:28

标签: iphone ios4 user-interface

我有一个带有4个UIBarButtonItem的工具栏,点击其中一个按钮,我想将当前视图控制器更改为另一个视图控制器。

请告诉我如何实现这个目标?

谢谢,

BR, Suppi

1 个答案:

答案 0 :(得分:1)

您是否使用UINavigationBar和UIBarButtonItem? 如果是这样,那么只是偶然

[self.navigationController pushViewController:theViewCntrlrYouWant animated:NO];

应符合您的意愿。

(根据Suppi的观察编辑) 如果没有导航栏,那么就像:

YourViewController * first = [[YourViewController alloc] init];
[self presentModalViewController:first animated:NO];
[first release];