我對iPhone開發非常新穎。 在我的應用程序中,我想在單擊按鈕時使用MFMailComposeViewController發送電子郵件。如何使用MFMailComposeViewController發送電子郵件
我該如何做到這一點? 我使用下面的代碼。
MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
[controller setSubject:@"Email App"];
[controller setMessageBody:@"Sample email app" isHTML:NO];
[self presentModalViewController:controller animated:YES]; // App crash in this line.
[controller release];
其顯示的警告:
'ImportingDocumentAppDelegate' may not respond to '-presentModalViewController:animated:'.
感謝.....
謝謝Saadnib。 – Arun