Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to launch Settings inbuilt App from our App?

Tags:

iphone

i want to open inbuilt Setting Application in my Application .. i want some idea to perform it.. how could i make it??

with some code..should be more effecient. Thanks. Keyur Prajapati

like image 263
Keyur Prajapati Avatar asked Oct 19 '11 07:10

Keyur Prajapati


People also ask

How do I launch my settings app?

From the Home screen, tap the Menu Key > System settings.

Where is default app settings?

Open your phone's Settings app. Default apps. Tap the default that you want to change. Tap the app that you want to use by default.

How do I get to the Settings menu?

As with many things Android-related, the Settings menu looks different depending on your phone or tablet's manufacturer. But first, we need to open the Settings. Swipe down from the top of the screen (once or twice, depending on your device's manufacturer) and tap the gear icon to open the Settings menu.


1 Answers

You can use this in iOS 8:

if (&UIApplicationOpenSettingsURLString != NULL) {
        NSURL *settings = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
        [[UIApplication sharedApplication] openURL:settings];
    }
like image 177
Brad Avatar answered Oct 02 '22 01:10

Brad