zoukankan      html  css  js  c++  java
  • 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"]];
  • 相关阅读:
    数据库迁移到Amazon RDS 的问题
    排序算法之希尔排序
    第一个 Shell脚本
    排序算法之直接插入排序
    当前工作参考
    cerr
    阿里云典型应用案例
    云服务引擎ACE
    阿里云SLB
    指针使用注意事项
  • 原文地址:https://www.cnblogs.com/sunfuyou/p/6183068.html
Copyright © 2011-2022 走看看