In my app from applicationDidEnterBackground i want to ask the application for more time to
create a UIWebView and load request with UIBackgroundTaskIdentifier, then in the delegate
method of UIWebView (webViewDidFinishLoad) i want to do a stuff there and show an alert or
notification while the
application is still reining in the background .
so how i can do that?.
Apple’s documentation for
UIApplicationclass forbeginBackgroundTaskWithExpirationHandler: method says:So, once web view finish loading in background you can trigger another operation from
webViewDidFinishLoadto show alert.