How to launch Settings from the embedded application from our application?

I want to open the built-in settings application in my application .. I want some idea to execute it. How can i do this?

with some code ... should be more efficient. Thank you Keyur prajapati

+7
source share
1 answer

You can use this in iOS 8:

if (&UIApplicationOpenSettingsURLString != NULL) { NSURL *settings = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; [[UIApplication sharedApplication] openURL:settings]; } 
+1
source

All Articles