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"]];
posted @ 2016-12-15 14:13  孙富有(iOS工程师)  阅读(491)  评论(0编辑  收藏  举报