Вы можете определить rect
региона и обрезать ту часть изображения, чтобы получить нужное изображение.
....
/* Identify the region that needs to be cropped */
CGRect navigationBarFrame = self.navigationController.navigationBar.frame;
CGRect tabBarFrame = self.tabBarController.tabBar.frame;
CGRect screenshotFrame;
screenshotFrame.origin.x = 0;
screenshotFrame.origin.y = navigationBarFrame.size.height;
screenshotFrame.size.width = navigationBarFrame.size.width;
screenshotFrame.size.height = tabBarFrame.origin.y - screenshotFrame.origin.y;
/* Crop the region */
CGImageRef screenshotRef = CGImageCreateWithImageInRect(image, screenshotFrame);
UIImage * screenshot = [[(UIImage *)screenshotRef retain] autorelease];
CGImageRelease(screenshotRef);
/* Convert to data and send */
NSData * screenshotData = UIImageJPEGRepresentation(screenshot, 1.0);
if ( [MFMailComposeViewController canSendMail] ) {
....
[mailComposer addAttachmentData:screenshotData
mimeType:@"image/jpeg"
fileName:@"attachment.jpg"];
....
}
Если вы вручную используете панель навигации и / или панель вкладок, тозамените self.navigationController.navigationBar
и self.tabBarController.tabBar
соответственно.