web-dev-qa-db-ja.com

iPhoneでプログラムで別のアプリから設定アプリを開く

IPhoneでGPSが有効になっていない場合は、アプリから設定アプリを開く必要があります。次のコードを使用しました。 iOSシミュレーターではうまく機能しますが、iPhoneでは機能しません。このコードに問題はありますか。

if (![CLLocationManager locationServicesEnabled]) {
        int (*openApp)(CFStringRef, Boolean);
        void *hndl = dlopen("/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices");
        openApp = (int(*)(CFStringRef, Boolean)) dlsym(hndl, "SBSLaunchApplicationWithIdentifier");
        openApp(CFSTR("com.Apple.Preferences"), FALSE);
        dlclose(hndl);
    }
35

良いニュース:

このようにプログラムで設定アプリを開くことができます(iOS8以降からのみ動作します)。

Swift 3.0を使用している場合:

UIApplication.shared.open(URL(string: UIApplicationOpenSettingsURLString)!)

Objective-Cを使用している場合:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];

他の下位バージョン(iOS8未満)の場合、設定アプリをプログラムで開くことはできません。

111
Yatheesha B L

他の人が答えたように、アプリから設定を開くことはできません。

しかし、私がやったように、あなたは状況を解決することができます:

ロケーションサービスを有効にする必要があるというメッセージを出力し、その理由を説明し、そのメッセージにパスを表示します。

「設定->プライバシー-> LocationServices」

10
AlexWien

プログラムで設定アプリを開くことはiOS 8からのみ可能です。したがって、次のコードを使用してください...

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
{
   if (alertView.tag == 121 && buttonIndex == 1)
 {
  //code for opening settings app in iOS 8
   [[UIApplication sharedApplication] openURL:[NSURL  URLWithString:UIApplicationOpenSettingsURLString]];
 }
}
6

IOS 5.0までは、URL schema経由でsettingsを開くことができました。つまり、

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"My Settings URL"]];

これはiOS 5.1以降では非推奨です。

3
footyapps27

これは、設定が開いたときに何をするかをユーザーに指示するアラートを含む、私のために機能したSwift2バージョンです。

func initLocationManager() {
    locationManager = CLLocationManager()
    locationManager.delegate = self
    locationManager.desiredAccuracy = kCLLocationAccuracyBest
    locationManager.requestAlwaysAuthorization()


// If there isn't a Lat/Lon then we need to see if we have access to location services
// We are going to ask for permission to use location if the user hasn't allowed it yet.
let status = CLLocationManager.authorizationStatus()
if(status == CLAuthorizationStatus.NotDetermined || status == CLAuthorizationStatus.Denied)  {

    //println(locationManager)

    //  check that locationManager is even avaiable.  If so, then ask permission to use it
    if locationManager != nil {
        locationManager.requestAlwaysAuthorization()

        //open the settings to allow the user to select if they want to allow for location settings.
        let alert = UIAlertController(title: "I Can't find you.", message: "To let my App figure out where you are on the map click 'Find Me' and change your location to 'Always' and come back to MyMobi.", preferredStyle: UIAlertControllerStyle.Alert)
        alert.addAction(UIAlertAction(title: "No Thanks", style: UIAlertActionStyle.Default, handler:nil))
        alert.addAction(UIAlertAction(title: "Find Me", style: UIAlertActionStyle.Default, handler: {
            (alert: UIAlertAction!) in
            UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!)
        }))
        self.presentViewController(alert, animated: true, completion: nil)


    }
}
}

openURLはiOS10.0で廃止されました:代わりにopenURL:options:completionHandlerを使用してください

let url = URL(string: UIApplicationOpenSettingsURLString)!
UIApplication.shared.open(url, options: [:]) { success in }
3
Aravindhan