Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 iphone 开发的新手。
我正在使用用户名和密码创建简单的登录应用程序。
成功登录后,我想将 UI 导航到另一个 UI。
请建议我该怎么做?
如果您使用的是 UINavigation 控制器
[self.navigationController pushViewController:viewControllerObj animated:YES];
如果您使用故事板
[self performSegueWithIdentifier:@"identifier" sender:self];