I emerged a question using presentViewController and navigation between views. presentViewController makes the same view multiple times? or when you call the function only reopen the view if it is already open?
For example, if you call the next function form three different views:
HomeController *homeController = [[HomeController alloc] initWithNibName:nil bundle:nil];
[self presentViewController:homeController animated:YES completion:nil];
You have three homeControllers or only one?
Well, thanks!