我试图在有人通过 UIImagePickerController 选择照片后直接显示电子邮件对话。我不能让它之后直接弹出。难道我做错了什么?最终我会把照片作为附件,但这不是困难的部分。我可以让电子邮件和照片模式单独显示,而不是自动按顺序显示。谢谢!
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
// Hide the dialouge
[picker dismissModalViewControllerAnimated:YES];
[self becomeFirstResponder];
MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
controller.mailComposeDelegate = self;
[controller setSubject:@"test"];
[controller setMessageBody:@"test" isHTML:NO];
[self presentModalViewController:controller animated:YES];
}