インターネット接続がないときにポップアップするアラートビューがあります。インターネット接続があるときに無効にする方法があります…。 作業コード:
-(void)reachabilityChanged:(NSNotification*)note
{
Reachability * reach = [note object];
if([reach isReachable])
{
notificationLabel.text = @"Notification Says Reachable";
NSLog(@"Internet is Up");
}
else
{
notificationLabel.text = @"Notification Says Unreachable";
NSLog(@"Internet is Down");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Please connect to Internet"
message:nil
delegate:self
cancelButtonTitle:nil
otherButtonTitle:nil
[alert show];
}
}
-(void)dismissAlert:(UIAlertView *)alertView{
[alertView dismissWithClickedButtonIndex:0 animated:YES];
}