我有一个警报视图,当没有互联网连接时会弹出。我有办法在有互联网连接时禁用它…… 工作代码:
-(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];
}