I am in the middle of trying to convert this app so I can use it in Xcode 5 and iOS7, it is saying dismissModalViewControllerAnimated is deprecated.
[self.navController dismissModalViewControllerAnimated:YES];
Any suggestions?
Try:
[self dismissViewControllerAnimated:YES completion:nil];
The new method is:
[self.navController dismissViewControllerAnimated:NO
completion:nil];
The word modal has been removed
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With