2011-04-05 191 views

回答

2

我想你應該讀Apple docs 它會幫助你多過正被這裏使用的用戶界面僅僅是因爲他們很可能子類MFMailComposeViewController

+0

因德爾謝謝!我已經讀過,我們準備好了。不過,我認爲用戶看到表單並輸入內容會更自然。我不想將它們從應用程序中移除。我們可能永遠不會讓他們回來。 – scottorn 2011-04-05 06:22:55

2

你可以使用這個代碼塊你目的。

picker.mailComposeDelegate = self; 
NSArray *toRecipients = [NSArray arrayWithObject:@"[email protected]"]; 
NSString *tosubject =txtSubject.text; 
[picker setSubject:tosubject]; 


// Set up recipients 
[picker setToRecipients:toRecipients]; 

乾杯

+0

謝謝Aditya,我會試試看看它是否有效。 thx – scottorn 2011-04-05 06:23:26

+0

不要擔心它肯定會工作! – Aditya 2011-04-05 06:25:13

相關問題