简体   繁体   中英

How to launch Settings inbuilt App from our App?

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

You can use this in iOS 8:

if (&UIApplicationOpenSettingsURLString != NULL) {
        NSURL *settings = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
        [[UIApplication sharedApplication] openURL:settings];
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM