如何浏览IOS中的按钮单击?

时间:2012-12-18 12:19:29

标签: mysql xcode ios6

我是iphone开发的新手。

我正在使用用户名和密码创建简单的登录应用程序。

成功登录后,我想将UI导航到另一个用户界面。

请建议我该怎么做?

1 个答案:

答案 0 :(得分:1)

如果您使用的是导航控制器

[self.navigationController pushViewController:viewControllerObj animated:YES];

如果您正在使用storyBoard

[self performSegueWithIdentifier:@"identifier" sender:self];