Quote:
Originally Posted by redon
i tryed the following code, put my iphone in airplane mode and ran the app. it appears to not work...at all
Code:
- (BOOL) connectedToNetwork {
return ([NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.apple.com/"]]!=NULL)?YES:NO;
if (YES) {
}
if (NO) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"no internet connection"
delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
}
}
|
Nothing after the return statement is being called. Try using NSLog() to see where code ends/if it's called.