Skip to content

Instantly share code, notes, and snippets.

@priore
Created October 25, 2013 23:43
Show Gist options
  • Save priore/7163516 to your computer and use it in GitHub Desktop.
Save priore/7163516 to your computer and use it in GitHub Desktop.
User-Agent for all UIWebView in your app
// User-Agent for all UIWebView in your app, originally posted by @_kims
NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment