I am getting a SIGABRT
error when I'm trying to show my modalviewcontroller.
This is the code:
LoginPage *loginPage = nil;
loginPage = [[LoginPage alloc] initWithNibName:@"LoginPage" bundle:nil];
loginPage.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentModalViewController:loginPage animated:YES];
[loginPage release];
I'm getting the error on the line: [self presentModalViewController:loginPage animated:YES];
Can anyone help?
Code Update`
Error Message
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key tableView.'
Thanks.