I have an iPhone app that uses the UIWebView to display a site that I have built as part of a much larger .net application. Everything was running beautifully until a change on my website side. Now what is happening in the iOS app is that the changes to fix the problem in the Website itself aren't appearing in the UIWebView. I verified the changes were in place by going into Safari on my iPhone with the exact same URL and all the changes were there. Why isn't the app recognizing the WebSite changes?
The code for loading the Website is below. Unfortunately I have to not include the actual URL. I'm fairly new to iOS so please be kind :)
- (void)viewDidLoad
{
[super viewDidLoad];
UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@" " style:UIBarButtonItemStyleBordered target:nil action:nil];
[[self navigationItem] setBackBarButtonItem:backButton];
// Set Logo in Navbar
self.navigationItem.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Logo"]];
NSString *urlString = @"http://website.com/page.aspx";
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
}