I'm new to the IOS environment and after studying a bit how the language works, I did not understand how I can call a window / class and superimpose the current window as I do on android.
Intent intent = new Intent(a.class, b.class);
startActivity(intent);
I started an application with tab control and searching in the English stack and in some tutorials on the internet, I saw that it is necessary to use a navigation control. When I apply the navigation control in the view, I use the code below to open the new class.
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:nil];
UIViewController *myController = [storyboard instantiateViewControllerWithIdentifier:@"Dicas"];
[self.navigationController pushViewController: myController animated:YES];
It works, but it just changes the current view to the new one ... just like the image below.
Is there any way to call a new window without being this way and without using navigation control? Because I'm using tabs at the bottom it would make something strange a navigation control at the top.