We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46c31ce commit 1844c70Copy full SHA for 1844c70
testing/sample_framework/src/ios/ios_app_framework.mm
@@ -90,10 +90,11 @@ - (void)viewDidLoad {
90
delete[] argv[0];
91
argv[0] = nullptr;
92
[NSThread sleepForTimeInterval:kGameLoopSecondsToPauseBeforeQuitting];
93
- [UIApplication.sharedApplication openURL:[NSURL URLWithString:kGameLoopCompleteUrlScheme]
94
- options:[NSDictionary dictionary]
95
- completionHandler:nil];
96
-
+ dispatch_async(dispatch_get_main_queue(), ^{
+ [UIApplication.sharedApplication openURL:[NSURL URLWithString:kGameLoopCompleteUrlScheme]
+ options:[NSDictionary dictionary]
+ completionHandler:nil];
97
+ });
98
});
99
}
100
0 commit comments