i built an app on ios 4.3 and it worked fine but when i run it on the new ios the back buttons dont work. Heres my code to go to the next xib:

-(IBAction)Selection3Page:(id)sender;{ //show next view Selection3Page * nvc = [[Selection3Page alloc] initWithNibName:nil bundle:nil]; [self presentModalViewController:nvc animated:NO]; [nvc release]; }

and this is the code to return back to the first xib:

-(IBAction)done:(id)sender{
[self.parentViewController dismissModalViewControllerAnimated:NO];

}

please help!!

link|improve this question

0% accept rate
feedback

2 Answers

The API for dismissing modal views was changed somewhat in iOS 5. Try this instead:

if ([self respondsToSelector:@selector(dismissViewControllerAnimated:completion:)])
{
    NSLog(@"didTouchDoneButton 5.x");
    [self dismissViewControllerAnimated:YES completion:nil];
}
else
{
    NSLog(@"didTouchDoneButton 4.x");
    [self dismissModalViewControllerAnimated:YES];
}
link|improve this answer
worked!! i was going crazy over this! thanks so much sir! – user975767 Oct 20 '11 at 6:41
Please vote up the answer and mark it as correct if it answered your question. – typeoneerror Oct 20 '11 at 17:45
i cant becuase im not a high enough rank yet =/ sorry – user975767 Oct 24 '11 at 23:07
feedback

post some NSLogs in there somewhere and check if the methods are actually getting called... I would start around that..

link|improve this answer
how would i be able to do that here? sorry im new to coding – user975767 Oct 16 '11 at 17:12
Place this inside the functions, at the top... NSLog("Function called"); When clicking on the function, check the log if this comments appear... Correctly placing the NSLogs could help you find where the program stops working... – Sergio Campamá Oct 17 '11 at 12:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.