Shashank Kulshrestha
Shashank Kulshrestha

Reputation: 1556

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.

Upvotes: 4

Views: 4359

Answers (1)

Balu
Balu

Reputation: 8460

Apple does not provide a URL schema for achieving this.

Upvotes: 8

Related Questions