iOS native dialog problem

There is a problem when i press home button while any native dialog is opened. (such as leaderboard)
When i came back to application, native dialog is disappeared and I can’t re-open any native dialog with this message on Xcode

Warning: Attempt to present <UIAlertController: 0x1885a820> on <UnityDefaultViewController: 0x145cdbd0> which is already presenting

I use latest version of Xcode and iOS.
Is there anyone who has this issue?

I’m having this same issue, but unfortunately haven’t been able to correct it. This seems to happen with any of the native views on an app suspend.

Thanks for sharing it. I’ve opened a bug report for this issue.

Temporary workaround would be to disable “on-pause snapshot” (sigh at apple - how come they broke such easy thing):
in UI/UnityAppController+ViewHandling.mm
search for

  • (UIView*)createSnapshotView
    and just return nil always, like this:

  • (UIView*)createSnapshotView
    {
    return nil;
    }