Verifique a conexão à Internet sem acessibilidade (Objective C, iOS)

Проверка Интернет соединения без Reachability (Objective C, iOS).
Метод отправляет запрос на google.com и получает ответ:

 - (BOOL)connectedToInternet
{
NSString *urlString = @"http://www.google.com/";
NSURL
*url = [NSURL URLWithString:urlString];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"HEAD"];
NSHTTPURLResponse *response;

[NSURLConnection sendSynchronousRequest:request returningResponse:&response error: NULL];

return ([response statusCode] == 200) ? YES : NO;
}

Используйте этот код, там где необходимо проверить соединение.

if([self connectedToInternet] == NO)                  
{
// Not connected to the internet
}
else
{
// Connected to the internet
}