Accessing the Settings app from your app in iOS 8?

后端 未结 4 771
说谎
说谎 2020-12-08 07:19

Is it possible to access the settings app from your own app via a button or whatever it may be in iOS 8. I heard that it got decrepitude in iOS 5, is that true? If not did t

4条回答
  •  醉话见心
    2020-12-08 07:33

    In Swift:

    if let settingsURL = NSURL(string: UIApplicationOpenSettingsURLString) {
        UIApplication.sharedApplication().openURL(settingsURL)
    }
    

提交回复
热议问题