在 a 的文本中UITextView
,我有一个电子邮件地址,并且dataDetectorType
设置为dataDetectorTypeLink
。有没有办法用这种配置设置电子邮件的主题行?我知道如何使用 设置电子邮件的主题行MFMailComposeController
,但是有没有办法将它与 结合起来dataDetectorType
?
编辑:这是我在我的应用程序委托中对 `openURL:(NSURL *)url 的(重新)定义:
-(void)openURL:(NSURL *)url
{
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];
mailer.mailComposeDelegate = self;
[mailer setSubject:@"feedback on Gay Haiku"];
[self presentViewController:mailer animated:YES completion:NULL];
}
但是我收到一个错误No visible @interface for AppDelegate declares the selector
presentViewController:animated:`。