Guest User

Untitled

a guest
Jan 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. NSString *cssPath = [[NSBundle mainBundle] pathForResource:@"testing" ofType:@"css"];
  2.  
  3. NSString *js = @"var fileref=document.createElement('link');fileref.setAttribute('rel','stylesheet');fileref.setAttribute('type', 'text/css');fileref.setAttribute('href','";
  4. NSString *js2 = [js stringByAppendingString:cssPath];
  5. NSString *finalJS = [js2 stringByAppendingString:@"');document.getElementsByTagName('head')[0].appendChild(fileref);"];
  6.  
  7. [webView stringByEvaluatingJavaScriptFromString:finalJS];
Add Comment
Please, Sign In to add comment