Skip to content

Instantly share code, notes, and snippets.

@champierre
Last active October 10, 2015 21:28
Show Gist options
  • Select an option

  • Save champierre/3753734 to your computer and use it in GitHub Desktop.

Select an option

Save champierre/3753734 to your computer and use it in GitHub Desktop.
How to change user agent on iOS
NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"custom user agent", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dictionary];
[dictionary release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment