显示蜂窝数据已关闭警报

时间:2012-12-17 10:09:05

标签: iphone objective-c ios uialertview

如何显示此提醒视图?我知道我需要检查连接的可达性,但如何通过设置和确定按钮显示此警报? iOS 6需要它。

enter image description here

1 个答案:

答案 0 :(得分:3)

不幸的是,在iOS 5.1及更高版本中,您无法从应用中打开设置应用。

如果您使用的是较小版本,则以下内容将起作用。

创建警报视图,如:

UIAlertView *cellularData = [[UIAlertView alloc] initWithTitle: @"Cellular Data is Turned Off" message:@"Turn on ellular data or use Wi-Fi to access data"  delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Settings", nil];
[cellularData show];

实施clickedButtonAtIndex之类的:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
   if(buttonIndex == 1)
   {
      [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General&path=Network"]]
   }
}

它将从您的应用程序中打开设置应用程序。