Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Settings Programmatically iOS 6

I am making an app in which I need to open settings of device programatically. Previously we can open it using following code

 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"]];

But I come to know its been deprecated from iOS 5.1. Please let me know if there is some other way to open it.

like image 754
Shashank Kulshrestha Avatar asked Feb 17 '23 07:02

Shashank Kulshrestha


1 Answers

Apple does not provide a URL schema for achieving this.

like image 128
Balu Avatar answered Mar 06 '23 03:03

Balu