iOS Launching Settings -> Restrictions URL Scheme

后端 未结 13 1438
自闭症患者
自闭症患者 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:24

    Solution for iOS10. Works fine.

    NSURL *URL = [NSURL URLWithString:@"App-prefs:root=TWITTER"];
    [[UIApplication sharedApplication] openURL:URL options:@{} completionHandler:nil];
    

提交回复
热议问题