iOS 9.3 freeze after calling openURL
问题 My app freezes after calling openURL on iOS 9.3 builds 13E233 & 13E234. I tried using dispatch_after but that does not fix the issue. Here's the code, nothing special. + (void)someMethod:(UIView *)senderView { [Utility showLoadingHUDWithText:nil inView:senderView]; [[SomeClient sharedClient] someNetworkAPI:^(id result) { [Utility hideAllHUDsForView:senderView]; NSDictionary *dict = (NSDictionary *)result; NSString *someString = dict[@"someKey"]; NSURL *url = [NSURL URLWithString:someString];