I’m having trouble thinking of ways to change views after hitting “send” when in email mode. I have a main view that is a form that the user fills out, that info then populates the email. Now when I hit “send” I don’t want the user to go back to the form page but a new one.
Thoughts? Thanks!
Add
MFMailComposeViewControllerDelegateto your view controller interface.then make the current view controller the delegate when initializing the “
you will be notified of the status of the mail in the method
Here you should be able to load a new view based on your choice and result.