2010-04-29 77 views
0

在我的應用程序中我使用MFMailComposeViewController來處理電子郵件... 我正在以編程方式將字段添加到...我想要阻止用戶編輯TO字段,是否有可能阻止TO fileld在MFMailComposeViewController中編輯

用戶不能更改field的電子郵件地址...我無法找到我也不知道,如果它是可以或不可以

這是沒有必要的,但仍然代碼

NSArray *arr = [NSArray arrayWithObject:Emailstr]; 
    MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init]; 
    controller.mailComposeDelegate = self; 
    [controller setToRecipients:arr]; 
    [controller 
    [controller setMessageBody:@"Hello there." isHTML:NO]; 
    [self presentModalViewController:controller animated:YES]; 

回答

1

這是不可能的。

+0

確定這是可能的。只是不容易。 – Nekbeth 2017-04-09 21:48:51

相關問題