13
Swiftを使用して1つのViewControllerから別のViewControllerに移動する方法
あるViewControllerから別のViewControllerに移動したいのですが。次のObjective-CコードをSwiftに変換するにはどうすればよいですか? UIViewController *viewController = [[self storyboard] instantiateViewControllerWithIdentifier:@"Identifier"]; UINavigationController *navi = [[UINavigationController alloc] initWithRootViewController:viewController]; [self.navigationController pushViewController:navi animated:YES];