Anybody else having a problem using the segment control in visionOS. My setup has 3 segments. But after I tap segment 2 or 3 then the next tap returns focus to segement 1 not matter what segment I actually tap and then no further taps on segment 1, 2 or 3 trigger the valuechanged event and it appears that segments 2 and 3 are disabled. To diagnose this I added a to the view but I did not wire it up to anything and got the same results so it not my code causing this behavior. Any ideas?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
When i use the MFMailComposeViewController in visionOS, there is no cancel button for the controller. The button at the bottom closes the app. Is anyone else experiencing this?
if([MFMailComposeViewController canSendMail]) {
MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init];
controller.mailComposeDelegate = (id <MFMailComposeViewControllerDelegate>)view;
[controller setToRecipients:toAddresses];
[controller setSubject:subject];
[controller setMessageBody:body isHTML:isHtml];
[view presentViewController:controller animated:YES completion:nil];
}