iOS 9.3 friert nach Aufruf von openURL @ e

Meine App friert nach dem Aufruf von @ eopenURL unter iOS 9.3 erstellt 13E233 und 13E234.

Ich habe versucht mitdispatch_after aber das behebt das Problem nicht.

Hier ist der Code, nichts Besonderes.

+ (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];
        if ([[UIApplication sharedApplication] canOpenURL:url]) {
            [[UIApplication sharedApplication] openURL:url];
        }
    } fail:^(NSError *error) {
        [Utility hideAllHUDsForView:senderView];
        [Utility showMessageHUD:error.localizedDescription];
    }];
}

s scheint ein iOS-Fehler zu sein, von dem auch viele andere Apps betroffen sin

Antworten auf die Frage(4)

Ihre Antwort auf die Frage