I have been following a tutorial series and I am trying to learn how to send an email.
I typed in the following line of code but it says it was deprecated in iOS 6.
[self presentModalViewController:picker animated:YES];
What would be the replacement for this code in iOS 6 be and would it work on iOS 5 devices?
That method was deprecated and is replaced by
But really, that’s right at the top within the documentation of
presentModalViewController:animated:.