2

我一直在研究天气应用程序。我想知道如何附加/捕获现有地图以通过电子邮件发送?

任何想法或任何有用的链接。提前非常感谢。

4

2 回答 2

1

您可以使用 UIGraphicsGetImageFromCurrentContext 进行屏幕截图。然后您可以使用此屏幕截图附加到电子邮件。

- (void)twitterButtonPressed {


    NSString *post=[[NSString alloc]initWithFormat:@"I've burned so far %d Calories today -  update from iPhone app Run Burn Calories!", self.userActivityTotalCount];
    NSURL *url=[NSURL URLWithString:@"www.xxx.uh.edu"];
    UIImage *iconImage2=[self imageWithImage:iconImage scaledToSize:CGSizeMake(73.0, 73.0)];
    if([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
    {
        SLComposeViewController *twitterSheet=[SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
        [twitterSheet setInitialText:post];
        [twitterSheet addURL:url];
        [twitterSheet addImage:iconImage2];
        [self presentViewController:twitterSheet animated:YES completion:nil];
        SLComposeViewControllerCompletionHandler completion=^(SLComposeViewControllerResult result){
            switch (result) {
                case SLComposeViewControllerResultDone:
                    NSLog(@"posted successfully!");
                    break;
                case SLComposeViewControllerResultCancelled:
                    NSLog(@" could not posted!");
                    break;

                default:
                    break;
            }
            [twitterSheet dismissViewControllerAnimated:YES completion:nil];

        };
        twitterSheet.completionHandler=completion;

    }
    else{
        UIAlertView *alertView=[[UIAlertView alloc]initWithTitle:@"Sorry" message:@"You can't send a tweet right now, make sure your device has an internet connection and you have at least one Twitter account set up" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
        [alertView show];
    }

}

-(UIImage*)imageWithImage:(UIImage*)image scaledToSize:(CGSize)newSize
{
    UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
    [image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
    UIImage *newImage =UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return newImage;

}
于 2014-12-29T16:42:41.217 回答
0

首先,如果现有地图尚未采用这种格式,我会将其转换为图像。完成此操作后,发送电子邮件非常简单。这是我的应用程序中用于发送电子邮件的一段代码。

- (void) emailPhoto {

    MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
    picker.mailComposeDelegate = self;

    // Set the subject of email
    [picker setSubject:@"Subject of the Email"];

    // Add email addresses
    // Notice three sections: "to" "cc" and "bcc"
    //[picker setToRecipients:[NSArray arrayWithObjects:@"emailaddress1@domainName.com", @"emailaddress2@domainName.com", nil]];
    //[picker setCcRecipients:[NSArray arrayWithObject:@"emailaddress3@domainName.com"]];
    //[picker setBccRecipients:[NSArray arrayWithObject:@"emailaddress4@domainName.com"]];

    // Fill out the email body text
    NSString *emailBody = @"Text to appear in the email."; 

    // This is an HTML formatted email
    [picker setMessageBody:emailBody isHTML:NO];

    // Create NSData object as PNG image data from camera image
    // This is where I take my self.workingImage object and convert to data object
    NSData *data = UIImagePNGRepresentation(self.workingImage);

    // Attach image *data* object to the email
    [picker addAttachmentData:data mimeType:@"image/png" fileName:@"Image"];

    // Show email view
    [self presentModalViewController:picker animated:YES];

    // Now the user can send or cancel the email as they please

}
于 2012-10-19T17:34:12.213 回答