Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi i'm using MFMessageComposeViewController to send sms in my iOS project my code is like below,

 MFMessageComposeViewController *message = [[MFMessageComposeViewController alloc] init];
    message.delegate = self;
    message.recipients = [NSArray arrayWithObject:@"xxxxxx"];
    message.body = @"blha blah,,,,";
    [self presentModalViewController:message animated:YES];

and in my code i'm defining MFMessageComposeViewControllerDelegate method didFinishWithResult but when the task is completed control is not calling this didFinishWithResult delegate method.What may be the problem?

Any help is appreciated in advance.

share|improve this question

1 Answer

up vote 5 down vote accepted

You have to set the mailComposeDelegate

    message.mailComposeDelegate = self;
share|improve this answer
1  
Also, Make sure your class conforms to the proper delegate protocol: <MFMessageComposeViewControllerDelegate> – skram Jun 8 '12 at 15:22
@Graham Bell Did this work? – MCKapur Jun 9 '12 at 0:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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