I am trying to move the new view controller from my current view controller i am using the following code to do this
self.loginView = [self.storyboard instantiateViewControllerWithIdentifier:@"LOGIN"];
[self presentViewController:self.loginView animated:NO completion:nil];
This code works fine for the iOS 8 but in iOS 7(iPhone) it is not working. Can someone help me so get rid of this error?