I have an application with tabs that are all webviews. I’m using UIWebViewDelegate so that I get errors when the device loses access to the internet. I’m also using the Reachability class to track any changes in connection status.
The problem is this:
- I go to tab one
- Kill my internet connection (I get the message saying I lost the internet connection)
- I go to tab two (while the internet connection is gone)
- I get a error message in tab two via the UIWebViewDelegate method didFailLoadWithError
- I reconnect the internet
- I hit the refresh button that I created and I don’t get anything. THIS IS THE PROBLEM
- If I go back to tab one or any other tab, it works fine
I’m sure that once the UIWebView errors out that I need to reinitialize something but I don’t know what??????
Here’s the code for the tab.
#import "MINWebTab2Controller.h"
@implementation MINWebTab2Controller
@synthesize webView;
@synthesize timer;
@synthesize progressIndicator;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
// Set up progress indicator for web page load
//timer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(webViewLoading) userInfo:nil repeats:YES];
//[progressIndicator startAnimating];
webView.delegate = self;
webView.scalesPageToFit = YES;
NSString *urlAddress = @"http://www.mobilityinitiative-synergy.com/index.php/presentations";
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webView loadRequest:requestObj];
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}
#pragma mark UIWebViewDelegate methods
- (void)webViewDidStartLoad:(UIWebView *)thisWebView
{
[progressIndicator startAnimating];
}
- (void)webViewDidFinishLoad:(UIWebView *)thisWebView
{
//stop the activity indicator when done loading
[progressIndicator stopAnimating];
}
-(void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
NSLog(@"Error for WEBVIEW: %@", [error description]);
[progressIndicator stopAnimating];
}
@end
This is the code to the main delegate class. As you can see, I’m am using the Reachability class (a derivative of) provided by Apple.
#import "MINAppDelegate.h"
#import "Reachability.h"
@implementation MINAppDelegate
@synthesize window = _window;
@synthesize rootController;
@synthesize connectedToInternet;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
connectedToInternet = YES;
// Set up Root Controller
[[NSBundle mainBundle] loadNibNamed:@"TabBarController" owner:self options:nil];
[self.window addSubview:rootController.view];
// Observe the kNetworkReachabilityChangedNotification. When that notification is posted, the
// method "reachabilityChanged" will be called.
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(reachabilityChanged:) name: kReachabilityChangedNotification object: nil];
// allocate a reachability object
Reachability* reach = [Reachability reachabilityWithHostname:@"www.google.com"];
// here we set up a NSNotification observer. The Reachability that caused the notification
// is passed in the object parameter
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(reachabilityChanged:)
name:kReachabilityChangedNotification
object:nil];
[reach startNotifier];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}
//Called by Reachability whenever status changes.
- (void) reachabilityChanged: (NSNotification* )note
{
Reachability * reach = [note object];
if([reach isReachable])
{
if(connectedToInternet == NO)
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Network Change Detected"
message:@"You are now connected to the internet and can continue to use application."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}
connectedToInternet = YES;
}
else
{
if(connectedToInternet == YES)
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Network Change Detected"
message:@"You must be connected to the internet to use this app. Please connect to internet and reload the application."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
//exit(0);
}
connectedToInternet = NO;
}
}
- (void)applicationWillResignActive:(UIApplication *)application
{
/*
Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
*/
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
/*
Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
*/
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
/*
Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
*/
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
/*
Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
*/
}
- (void)applicationWillTerminate:(UIApplication *)application
{
/*
Called when the application is about to terminate.
Save data if appropriate.
See also applicationDidEnterBackground:.
*/
}
@end
I’m not sure that this is the best solution but here’s what I did.
I moved the code to launch the webview from viewDidLoad to viewDidAppear. The viewDidAppear method gets called when I go to the tab. In that method, I call the appropriate lines of code to relaunch the webview ([webview loadRequest:URL];)
I also added a flag to bPageLoaded and set this to false incase there was an error in loading the webpage. I check that flag in the viewDidAppear method so that I’m not redrawing the page except when there was an error.