Balaji
Balaji

Reputation: 261

Launching settings app from custom iOS application

Is there any way to launch the build-in iOS settings application from our custom applications.

Based on the URL schema , it is possible to launch safari,maps,YouTube,iTunes... etc. But in the documentation there is no any info related with settings app.

TIA. -Balaji R.

Upvotes: 1

Views: 8134

Answers (2)

Hak
Hak

Reputation: 145

//code for opening settings app in iOS 8
[[UIApplication sharedApplication] openURL:[NSURL  URLWithString:UIApplicationOpenSettingsURLString]];


//code for opening settings App in ios5
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];

Upvotes: 7

Robert Childan
Robert Childan

Reputation: 983

No you can not. Opening the Settings app from another app

Upvotes: 2

Related Questions