Accessing the Settings app from your app in iOS 8?

后端 未结 4 748
说谎
说谎 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条回答
  •  -上瘾入骨i
    2020-12-08 07:45

    Use UIApplicationOpenSettingsURLString.

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

提交回复
热议问题