I\'m diving into iOS development and when I try to load a specific Facebook Fan Page in a UIWebView, it loads the mobile version of the site, which only loads the wall of the Fa
Do this in viewDidLoad (or somewhere else before loading UIWebView):
NSDictionary *userAgent = @{ @"UserAgent" : @"Mozilla/5.0 (Windows NT 6.3; rv:36.0) Gecko/20100101 Firefox/36.0" }; [[NSUserDefaults standardUserDefaults] registerDefaults:userAgent];