Today I was working on GPS Speedometer and was need to attach an UIImage of MKMapview. As it has turned out it’s very easy: – (IBAction) email{ // CREATING MAIL VIEW MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init]; controller.mailComposeDelegate = self; [controller setSubject:@"Check this route out"]; [controller setMessageBody:@"Attaching a shot of covered route." isHTML:NO]; // MAKING [...]