Created
March 12, 2014 18:14
-
-
Save aarondufall/9512886 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)webViewDidFinishLoad:(UIWebView *)webView | |
{ | |
if ([webView canGoBack]){ | |
NSLog(@"Can Go back"); | |
self.backButton.enabled = YES; | |
} else { | |
self.backButton.enabled = NO; | |
} | |
if ([webView canGoForward]) { | |
self.forwardButton.enabled = YES; | |
} else { | |
self.backButton.enabled = NO; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment