Currently I am using [MFMailComposeViewController canSendMail]
to check if there exists some Account in Device. If Not I wish to show some Alert.
I saw an app of same kind which gives the alert "No Mail Accounts" in Localized Language.
I want the same Alert which should also be localized.
Is it some system Alert Or Will I have to create a custom with all localization strings?
Here is the exact implementation I am using
if (![MFMailComposeViewController canSendMail])
return nil;
MFMailComposeViewController *mailViewController = [[MFMailComposeViewController alloc] init];
if(mailViewController)
{
//Setting Email Stuff
}