我在我的应用中使用MFMailComposeViewController。我想改变toRecipients的颜色
我的代码:
MFMailComposeViewController *mailPicker = [[MFMailComposeViewController alloc] init];
NSArray *toRecipients = [NSArray arrayWithObject: info.mail];
[mailPicker setToRecipients: toRecipients];
是否可以更改toRecipients的颜色?如果有可能,我该怎么做?
先谢谢