Можно ли открыть приложение настроек с помощью openURL?
Я знаю, что приложение может запускать другие приложения, используя этот код: [[UIApplication sharedApplication] openURL:appUrl];
, И я знаю схему URL для открытия сафари и почты, но я сделал некоторые поиски и ничего не нашел о схеме settings.app.
4 ответа
Вы можете открыть настройки приложений программно попробовать это (работает только с iOS8 и далее).
Если вы используете Swift:
UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString))
Если вы используете Objective-C
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
Для других более низких версий (менее iOS8) невозможно программно открыть приложение настроек.
Вы можете использовать это в iOS версии 5.0 - 5.0.1. Это было объявлено устаревшим в iOS 5.1.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"]];
Открытие настроек приложения программно возможно только из iOS 8. Итак, используйте следующий код из http://code-ios.blogspot.in/2014/10/opening-settings-app-from-another-app.html
if([CLLocationManager locationServicesEnabled]&&
[CLLocationManager authorizationStatus] != kCLAuthorizationStatusDenied)
{
//...Location service is enabled
}
else
{
if([[[UIDevice currentDevice] systemVersion] floatValue]<8.0)
{
UIAlertView* curr1=[[UIAlertView alloc] initWithTitle:@"This app does not have access to Location service" message:@"You can enable access in Settings->Privacy->Location->Location Services" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[curr1 show];
}
else
{
UIAlertView* curr2=[[UIAlertView alloc] initWithTitle:@"This app does not have access to Location service" message:@"You can enable access in Settings->Privacy->Location->Location Services" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Settings", nil];
curr2.tag=121;
[curr2 show];
}
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSLog(@"buttonIndex:%d",buttonIndex);
if (alertView.tag == 121 && buttonIndex == 1)
{
//code for opening settings app in iOS 8
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
}
}
ВерсияSwift 4:
if let url = URL(string: UIApplicationOpenSettingsURLString) {
UIApplication.shared.openURL(url)
}