Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Reachability *networkReachability = [Reachability reachabilityForInternetConnection];
  2. NetworkStatus networkStatus = [networkReachability currentReachabilityStatus];
  3. if (networkStatus == NotReachable) {
  4. [UIView showSimpleAlertWithTitle:nil
  5. message:locs(@"8614aa-alert_connection_message", lpos_alert_message)
  6. cancelButtonTitle:@"OK"];
  7. return;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement