0

In iOS 8 there is now a settings launch URL to send the user directly to the settings page of an App

if(&UIApplicationOpenSettingsURLString != nil)
{
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
}

My question is how to open application setting page in iOS 6 and iOS 7 directly from application like in 'iOS 8'.

iYoung
  • 3,596
  • 3
  • 32
  • 59
Vineet Choudhary
  • 7,433
  • 4
  • 45
  • 72

1 Answers1

2

There is no way to open Setting screen of iOS Device(unjailbreak), below the iOS 8.0, This new feature is only available from iOS8.

You can check as per you are doing, for support of UIApplicationOpenSettingsURLString URI for iOS.

Hope this helps.

Viral Savaj
  • 3,379
  • 1
  • 26
  • 39
  • 1
    Agreed, this API was only introduced in iOS 8. There was an undocumented way of doing this in iOS 5, but that was patched in iOS 6. – Tim Johnsen Apr 22 '15 at 06:52
  • @ViralSavaj this is duplicate of http://stackoverflow.com/questions/15682164/iphone-open-settings-from-my-application-ios-6 – Ashok Londhe May 13 '15 at 05:00