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
You can use this in iOS 8:
if (&UIApplicationOpenSettingsURLString != NULL) { NSURL *settings = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; [[UIApplication sharedApplication] openURL:settings]; }