开发者

How to remove Cc or Bcc in MFMailIComposeViewController?

开发者 https://www.devze.com 2022-12-14 00:50 出处:网络
I don\'t want include cc or bcc fields in mail composer sh开发者_C百科eet .. Can anybody knows how canI do so ?You can\'t remove them.

I don't want include cc or bcc fields in mail composer sh开发者_C百科eet ..

Can anybody knows how can I do so ?


You can't remove them.

There is very little you can change about the look of this dialog.


As lyon mentions, the changes you can do to the looks of this dialog is almost none.

There is a sample code from Apple which you can try and play around. It is called MailComposer.

I just tried to pass nil for cc and bcc like this for you but it didnt work:

[picker setToRecipients:toRecipients];
[picker setCcRecipients:nil];   
[picker setBccRecipients:nil];
0

精彩评论

暂无评论...
验证码 换一张
取 消