のテキストに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:` というエラーが表示されます。