按下按鈕時,顯示MFMailComposeViewController
。在我的應用程序中包含電子郵件應用程序的問題
到目前爲止我已經完成了。
我的問題是:
- 是否有可能禁用動作片按下取消按鈕時,彈出?
- 是否有可能使到和主題字段不可編輯?
- 我想將左欄按鈕更改爲返回。
我該怎麼做?
- (IBAction)questionButtonPressed:(id)sender {
email = [[MFMailComposeViewController alloc] init];
email.mailComposeDelegate = self;
// Subject
[email setSubject:@"Testing"];
// Optional Attachments
NSData *artwork = UIImagePNGRepresentation([UIImage imageNamed:@"albumart.png"]);
[email addAttachmentData:artwork mimeType:@"image/png" fileName:@"albumart.png"];
// Body
//[email setMessageBody:@"This is the body"];
// Present it
[self presentModalViewController:email animated:YES];
}
我不同意:1:是的,2:是的,但不建議App Store(私人api),3:是的 – 2011-01-14 09:28:05
檢查答覆發佈者@Brad – xydev 2011-01-14 13:01:10