Call the official *Settings* app from my app on iPhone

后端 未结 9 822
名媛妹妹
名媛妹妹 2020-11-28 23:51

At one point in my app, I would like to redirect the user to the official Settings app. If possible, I also want go straight to the Network section within

9条回答
  •  再見小時候
    2020-11-29 00:11

    For settings in iOS 9 this is worked for me.

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=Settings"]];
    

    But make sure you add a url schemes in URL types in

    Info tab in app targets.

提交回复
热议问题