我是iphone开发的新手。
我正在使用用户名和密码创建简单的登录应用程序。
成功登录后,我想将UI导航到另一个用户界面。
请建议我该怎么做?
答案 0 :(得分:1)
如果您使用的是导航控制器
[self.navigationController pushViewController:viewControllerObj animated:YES];
如果您正在使用storyBoard
[self performSegueWithIdentifier:@"identifier" sender:self];