Emailing full screen of iPhone app

前端 未结 6 1407
无人及你
无人及你 2020-12-28 11:04

I am developing an iPhone app for creating images using built in graphics and user defined text.

I want to be able to have my app, with built in graphics and user de

6条回答
  •  没有蜡笔的小新
    2020-12-28 12:03

    In OS 3.0, you can use MFMailComposeViewController:

    MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
    picker.mailComposeDelegate = self;
    [picker addAttachmentData:screenshotPNG mimeType:@"image/png" fileName:@"PNGfromMyApp"];
    

提交回复
热议问题