I have this code
if ([sessionOutput isEqualToString:@"valid"]) {
LoggedInViewController *loggedin = [[LoggedInViewController alloc] initWithNibName:nil bundle:nil];
[self presentViewController:loggedin animated:YES completion:nil];
}
Except when it goes to change the view i get this message:
Warning: Attempt to present <LoggedInViewController: 0x717fec0> on
<ViewController: 0x8a64af0> whose view is not in the window hierarchy!
What am i doing wrong?