URL Scheme “Open Settings” ios

后端 未结 5 1912
后悔当初
后悔当初 2020-12-05 03:05

I know this question has been asked so many times. The answers say that this is not available in Xcode > 5.x. but I saw some apps that can use this(Go to Settings)(iOS7). Is

5条回答
  •  时光取名叫无心
    2020-12-05 03:22

    1.- Add URL Types

    2.- Use:

    Objective - C

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General"]];
    

    Swift

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

    3.- Other path find in this answer: iOS Launching Settings -> Restrictions URL Scheme

提交回复
热议问题