Hi All,
I am trying to set the title of MFMailComposerViewController , which is a subclass of UINavigationController.
I am using these following ways :
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
[picker.navigationController navigationItem].title = @"Send Mail";
[[picker navigationItem] setTitle:@"Send Mail"];
But I am not able to set the Title.
Am i doing it wrong ?? Is there any other method to do so ??
Thanks