您不能,没有API调用可以做到这一点。只有系统对话框(Apple框架中的对话框)才能打开设置应用程序。在iOS 5中,有一个应用程序网址方案可打开系统对话框,但Apple后来将其删除。随着iOS 8的到来,您可以在应用程序页面上打开设置对话框。if (&UIApplicationOpenSettingsURLString != NULL) { NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; [[UIApplication sharedApplication] openURL:url];}else { // Present some dialog telling the user to open the settings app.}