OpenUrl freezes app for over 10 seconds

前端 未结 11 1011
孤街浪徒
孤街浪徒 2020-12-13 02:05

I\'m currently developing an App, that needs to open a browser to display a webpage. To do that i use the [UIApplication sharedApplication] openURL method with

11条回答
  •  孤街浪徒
    2020-12-13 02:46

    I noticed the same problem when calling -[UIApplication openUrl:] from the Application Delegate didReceiveRemoteNotification: or didFinishLaunchingWithOptions: since iOS 7.

    I solved it by delaying the call a bit using GCD :

    // objc
    dispatch_async(dispatch_get_main_queue(), ^{
        [[UIApplication sharedApplication] openURL:url];
    });
    

    It let iOS some time to finish application initialization and the call is then performed without any problem. Don't ask me why.

    Does this works for you ?

    As this answer is often seen, I added the swift version:

    // swift
    dispatch_async(dispatch_get_main_queue()) {
        UIApplication.sharedApplication().openURL(url)
    }
    

提交回复
热议问题