Je vérifie joignabilité réseau dans applicationDidFinishLaunching:application n'a pas pu lancer dans le temps, même avec un fil d'arrière-plan
[self performSelectorInBackground:@selector(performReachabilityCheck) withObject:nil];
fil de fond
-(void)performReachabilityCheck{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
internetReach = [[Reachability reachabilityForInternetConnection] retain];
[internetReach startNotifer];
[self updateInterfaceWithReachability: internetReach];
[pool release]; pool = nil;
}
Je ne sais pas pourquoi mon application ne démarre pas à l'heure?
Une façon différente de procéder: http://stackoverflow.com/questions/1083701/how-to-check-for-an-active-internet-connection-on-iphone-sdk/3597085#3597085 – iwasrobbed