XCode を 4.5 に更新しましたが、ボタンを押して電子メールを送信すると、電子メール機能がクラッシュします。
私が間違っていることは何ですか?
ヘッダーファイルに MessageUI.framework を実装しました
#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
@interface ImpressumViewController : UIViewController <MFMailComposeViewControllerDelegate>
ボタンのコードは次のとおりです。
- (IBAction)kontakt:(id)sender {
MFMailComposeViewController *mailcontroller = [[MFMailComposeViewController alloc] init];
[mailcontroller setMailComposeDelegate:self];
NSString *email =@"Youtube@gmail.com";
NSArray *emailArray = [[NSArray alloc] initWithObjects:email, nil];
[mailcontroller setToRecipients:emailArray];
[mailcontroller setSubject:@"Youtube Tutorials"];
[self presentViewController:mailcontroller animated:YES completion:nil]; }
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error{
[self dismissViewControllerAnimated:YES completion:nil];
}