ios打开系统自带APP

打开系统自带app

    • 打开系统设置:
    • [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]];  
    •    打开蓝牙
    • [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General&path=Bluetooth"]]; 
    •    打开TWitter:   [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=TWITTER"]]; 
    •    
    • 调用 自带mail
    • [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];
    • 调用 电话phone
    • [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8008808888"]];
    • 调用 SMS
    • [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://800888"]];
    • 调用自带 浏览器 safari
    • [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.hzlzh.com"]];
原文地址:https://www.cnblogs.com/sunfuyou/p/6183068.html