You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.
(void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
// In viewWillDisappear do this can't hide while webview still request, may be KVO??
UIProgressView *progressView = [self valueForKey:@"progressView"];
if (progressView) {
[progressView removeFromSuperview];
progressView = nil;
}
I have some questions about DZNWebViewController while push it then pop it:
My Subclass solution:
(void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
self.navigationController.toolbarHidden = YES;
}
(void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
// In viewWillDisappear do this can't hide while webview still request, may be KVO??
UIProgressView *progressView = [self valueForKey:@"progressView"];
if (progressView) {
[progressView removeFromSuperview];
progressView = nil;
}
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
The text was updated successfully, but these errors were encountered: