iPhone: Opening Application Preferences Panel From App

后端 未结 4 2172
猫巷女王i
猫巷女王i 2020-12-19 23:27

Is it possible to open the application\'s preferences pane directly from the app, or will users be forced to to go through the Settings app?

4条回答
  •  遥遥无期
    2020-12-20 00:05

    It is possible now in iOS 8

    if (&UIApplicationOpenSettingsURLString != NULL)
      [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
    

提交回复
热议问题