I have got this error when I press send button from the message composer sheet, my piece of code is this:
-(void)ComposerSheet
{
picker = [[MFMessageComposeViewController alloc] init];
picker.messageComposeDelegate = self;
[self presentModalViewController:picker animated:YES];
[picker release];
}
I have initialised the picker in the .h file. How do I get out of here? I tried using NSZombies but as the problem is occurring at the messaging part, I can't use them there.