user1656557
user1656557

Reputation: 51

MFMailComposeViewController crushed when i'm trying to send mail. I'm working with both UINavigationController and UITabBarController

I created an application using both UINavigationController and UITabBarController. I'm trying to send mail using "MFMailComposeViewController" but get ab error and the application is crushed. My code:

and i did import: #import

import and use the MFMailComposeViewControllerDelegate.

Upvotes: 0

Views: 112

Answers (1)

Stive
Stive

Reputation: 6888

Try

mailComposer.mailComposeDelegate = self;

instead of

mailComposer.delegate = self;

Upvotes: 0

Related Questions