Skip to content

Instantly share code, notes, and snippets.

@orta
Created July 14, 2011 01:36
Show Gist options
  • Save orta/1081712 to your computer and use it in GitHub Desktop.
Save orta/1081712 to your computer and use it in GitHub Desktop.
NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
NSString *js = [NSString stringWithFormat:@"var headID = document.getElementsByTagName('head')[0];var cssNode = document.createElement('link');cssNode.type = 'text/css';cssNode.rel = 'stylesheet';cssNode.href = '%@/override.css';cssNode.media = 'screen';headID.appendChild(cssNode);", baseURL];
[_webView stringByEvaluatingJavaScriptFromString:js];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment