I want to change the default title of the SMS controller. How do i do this... Trying all the normal stuff doesnt work. Anyone know how to do it the right way ?
MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init] autorelease];
if([MFMessageComposeViewController canSendText])
{
ABMultiValueRef multi = ABRecordCopyValue(currentContact, kABPersonPhoneProperty);
[controller setBody:[smsTextView text]];
[controller setRecipients:[NSArray arrayWithObjects:(NSString*)ABMultiValueCopyValueAtIndex(multi, 0), nil]];
[controller setMessageComposeDelegate:self];
//Todo: Make the Title Change
[controller setTitle:@"asd"];
[[controller navigationItem] setTitle:@"asd"];
[self presentModalViewController:controller animated:YES];
}