I have a question about opening the Mail application on a iOS device. I want to open the Mail application from my app so that the user can choose a specific file to open it in my application. I have tried with
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"mailto:"]];
but the problem is that I don't want that the user is redirected to a compose view.
Any idea?