gpt4 book ai didi

iPhone - 无论如何要在您自己的应用程序中获取 iPhone 的电子邮件应用程序吗?

转载 作者:行者123 更新时间:2023-12-03 20:24:51 25 4
gpt4 key购买 nike

有人在自己的应用程序中嵌入了 iPhone 的电子邮件程序吗?

让我尝试简化一下。点击点击复仇可以让你“挑战 friend ”。当你选择这样做时,他们会在应用程序中打开标准的 iPhone 电子邮件程序(如果他们模仿它,它看起来非常棒),其中包含预先填充的数据。您所要做的就是从联系人中选择一个 friend ,然后按发送。您永远不会离开 Tap Tap Revenge 应用程序。

有什么想法可以做到这一点吗?

最佳答案

您需要将 MessageUI.framework 包含到您的项目中,并在头文件中设置委托(delegate):

#import <MessageUI/MessageUI.h>
@interface RootViewController : UIViewController <MFMailComposeViewControllerDelegate> {
MFMailComposeViewController *email;
}

@property (nonatomic, retain) MFMailComposeViewController *email;

完成此操作后,您需要在实现文件中包含一些委托(delegate)方法(您应该检查以查看结果,但我试图根据需要保留尽可能少的代码):

@synthesize email;

- (void) mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error {
[email dismissModalViewControllerAnimated:YES];
}

无论你想在哪里使用它,你都需要像这样初始化和设置它:

email = [[MFMailComposeViewController alloc] init];
email.mailComposeDelegate = self;

// Subject
[email setSubject:@"Testing"];

// Optional Attachments
NSData *artwork = UIImagePNGRepresentation([UIImage imageNamed:@"albumart.png"]);
[email addAttachmentData:artwork mimeType:@"image/png" fileName:@"albumart.png"];

// Body
[email setMessageBody:@"This is the body"];

// Present it
[self presentModalViewController:email animated:YES];

关于iPhone - 无论如何要在您自己的应用程序中获取 iPhone 的电子邮件应用程序吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1376521/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com