5

このアラート ビューを表示するにはどうすればよいですか? 到達可能性で接続を確認する必要があることはわかっていますが、設定と [OK] ボタンでこのアラートを表示するにはどうすればよいですか? iOS 6に必要です。

ここに画像の説明を入力

4

1 に答える 1

3

残念ながら、iOS 5.1 以降では、アプリから設定アプリを開くことはできません。

より古いバージョンを使用している場合は、次のように動作します。

次のような Alert ビューを作成します。

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"]]
   }
}

アプリケーションから設定アプリが開きます。

于 2012-12-17T10:37:00.153 に答える