iOS Launching Settings -> Restrictions URL Scheme

后端 未结 13 1234
自闭症患者
自闭症患者 2020-11-22 09:42

I\'ve recently discovered the awesome iOS5 custom Settings URL Scheme, which can be explained in detail at this great website.

I\'ve found this to work, dir

13条回答
  •  南笙
    南笙 (楼主)
    2020-11-22 10:25

    I wanted to open the Bluetooth Menu in the Settings Application and the above path (prefs:root=General&path=Bluetooth) didn't work for me. What ended up working for me was

    UIApplication.sharedApplication().openURL(NSURL(string:"prefs:root=Bluetooth")!)
    

    Make sure you have the prefs URL Scheme defined first.

提交回复
热议问题