Iphone使用MFMailComposer以编程方式发送电子邮件?
在我的应用程序中,我使用MFMailComposer发送电子邮件。Iphone使用MFMailComposer以编程方式发送电子邮件?
在我的应用程序中,用户可以选择他想要发送和发送邮件的时间。
它工作正常。但我所做的是,我用NSTimer打开MFMailComposeViewController,我有编程方式单击发送按钮。
但我不确定,那个苹果可能会批准我的应用或拒绝。 有没有人有使用这种类型的功能在那里的应用程序和苹果已批准或拒绝那里的应用程序。请让知道。
请帮我一把。
下面是我的代码:
-(void)showController { MFMailComposeViewController *mailController;
//alloc, init, set properties, do whatever you normally would
[self.navigationController presentModalViewController:mailController animated:YES];
[mailController release];
[NSTimer scheduledTimerWithTimeInterval:3 target:self selector:@selector(sendMail:) userInfo:mailController repeats:NO];
}
-(void)sendMail:(NSTimer*)theTimer {
MFMailComposeViewController *mailController = theTimer.userInfo;
UIBarButtonItem *sendBtn = mailController.navigationBar.topItem.rightBarButtonItem;
id targ = sendBtn.target;
[targ performSelector:sendBtn.action withObject:sendBtn];
}
回答:
您需要确认与用户。用户将点击发送按钮。您只能创建邮件并显示给用户进行确认。它的默认行为是MFMailComposeViewController。
谢谢
以上是 Iphone使用MFMailComposer以编程方式发送电子邮件? 的全部内容, 来源链接: utcz.com/qa/261360.html