アプリケーション内で iPhone の Mail.app を使用できるようにして、ユーザーがアプリケーションを離れることなく共有メールを送信できるようにしたいと考えています。私は3.0がこれを可能にしたことを知っています。
フレームワークフォルダーをctrlクリックしてフレームワークを適切に追加しました->既存のフレームワークを追加します。
これを、Mail.app を表示するビューコントローラーのヘッダー ファイルに追加しました。
#import <MessageUI/MessageUI.h>
UIAlert をポップアップし、閉じるときに以下の関数を呼び出します。コードにエラーは表示されません。Interface Builder 内で何か特別なことをする必要がありますか? エラーメッセージは以下
-(void)showEmailModalView {
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self; // <- very important step if you want feedbacks on what the user did with your email sheet
NSString * emailSubject = [[NSString alloc] initWithFormat:@"iPhone Subject Test"];
[picker setSubject:emailSubject];
NSString * content = [[NSString alloc] initWithFormat:@"iPhone Email Content"];
// Fill out the email body text
NSString *pageLink = @"http://mugunthkumar.com/mygreatapp"; // replace it with yours
NSString *iTunesLink = @"http://link-to-mygreatapp"; // replate it with yours
NSString *emailBody =
[NSString stringWithFormat:@"%@\n\n<h3>Sent from <a href = '%@'>MyGreatApp</a> on iPhone. <a href = '%@'>Download</a> yours from AppStore now!</h3>", content, pageLink, iTunesLink];
[picker setMessageBody:emailBody isHTML:YES]; // depends. Mostly YES, unless you want to send it as plain text (boring)
picker.navigationBar.barStyle = UIBarStyleBlack; // choose your style, unfortunately, Translucent colors behave quirky.
[self presentModalViewController:picker animated:YES];
[picker release];
[content release];
[emailSubject release];
}
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
[self dismissModalViewControllerAnimated:YES];
}
私のエラーメッセージ:
ld: framework not found Message
collect2: ld returned 1 exit status
このチュートリアルに従いました: http://blog.mugunthkumar.com/coding/iphone-tutorial-in-app-email/