how to set timeout?
Hi!
I read all the posts here and there is currently no working solution for setting timeout. Fe.: wait(20000); writes "Passing argument 1 of wait makes pointer from integer without a cast"...
Is there any way how to create timeout for:
- (BOOL) connectedToNetwork
{
return ([NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.google.com"] encoding:NSASCIIStringEncoding error:nil]!=NULL)?YES:NO;
}
?
Thanks a lot.
|