ios – 如何在UITextView中单击电子邮件链接时打开iPhone的邮件应用程序?

前端之家收集整理的这篇文章主要介绍了ios – 如何在UITextView中单击电子邮件链接时打开iPhone的邮件应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是iPhone开发的新手.我在xib中有一个UITextView.我在那里显示一个电子邮件地址链接我想在点击该电子邮件链接时打开iPhone的邮件应用程序.我怎样才能做到这一点?

解决方法

正如 this answer中所指出的,您可以设置UITextView的dataDetectorTypes属性: @H_301_6@textview.editable = NO; textview.dataDetectorTypes = UIDataDetectorTypeAll;

您还应该能够在Interface Builder中设置detectorTypes.

Apple documentation开始:

UIDataDetectorTypes

06001

单击UITextView中的电子邮件地址应该会自动打开Mail应用程序.

另外,如果您想从应用程序本身发送电子邮件,可以使用MFMailComposeViewController.

请注意,要显示MFMailComposeViewController,需要在设备上安装Mail应用程序,并将一个帐户链接到该应用程序,否则您的应用程序将崩溃.

所以你可以用[MFMailComposeViewController canSendMail]来检查这个:

@H_301_6@// Check that a mail account is available if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController * emailController = [[MFMailComposeViewController alloc] init]; emailController.mailComposeDelegate = self; [emailController setSubject:subject]; [emailController setMessageBody:mailBody isHTML:YES]; [emailController setToRecipients:recipients]; [self presentViewController:emailController animated:YES completion:nil]; [emailController release]; } // Show error if no mail account is active else { UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"Warning" message:@"You must have a mail account in order to send an email" delegate:nil cancelButtonTitle:NSLocalizedString(@"OK",@"OK") otherButtonTitles:nil]; [alertView show]; [alertView release]; }

MFMailComposeViewController Class Reference

猜你在找的iOS相关文章