Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. - (void) handleRequest
  2. {
  3. // Wait up to five seconds for the network to be worth trying.
  4. for (int i = 0; i < 5; i++)
  5. {
  6. if (NetworkWorthTrying()) return;
  7. [NSThread sleepForTimeInterval:1.0];
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement