In converting my email app to Mac Catalyst, I found that the setBccRecipients function of MFMailComposeViewController fails, with a message "'setToBccRecipients' not supported" however the call I am trying to use is "setBccRecipients", and the documentation says that that is supported in Mac Catalyst.
Any suggestions? or is this a Catalyst bug?
my code is (edited for length)
picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setBccRecipients:contacts];
which works fine in iOS, and also works correctly for Mac Catalyst if used in its To or Cc variants