In the original IOS version of my app, the following code successfully opens settings:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString] options:@{} completionHandler:^(BOOL success)
{
...
}];
But after building for Catalyst the command does nothing on the mac. The command does execute, the completion handler fires, and success is set to TRUE. But it does not open the settings window.
How do I programmatically open the settings on Mac Catalyst?