I'm trying to open iOS's mail application by clicking a button.
So I did this :
NSString *mailString = [NSString stringWithFormat:@"mailto://[email protected]"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:mailString]];
But nothing in particular happens... what's the problem ?
Thanks for your advices