• iOS应用之间调用


    //
    //  iOS应用之间调用.h
    //  IOS笔记



    1。判断系统里是否安装了某个app。比如新浪微博应用注册了URL scheme为@"weibo",我们可以通过
    [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"weibo://"]]来判断系统里是否发装了新浪微博。
    2。从一个应用里启动另一个应用。可以通过接口
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"weibo://"]]来启动微博。
    参数要根据微博里规定的方式传递,一般就像http的get方式传参一样。
    当然启动以后,自己的应用就会退到后台,想要再切回来,就要在自己的应用里也注册URL scheme。做为回调参数传给微博app。



    NSURL *url = [NSURL URLWithString:@"http://QZone.qq.com"];

    if ([[UIApplication sharedApplication] canOpenURL:url]) {
        [[UIApplication sharedApplication] openURL:url];
    } else {
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"message" message:[NSString stringWithFormat:@"%@",url] delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
        [alertView show];
    }

  • 相关阅读:
    如何用消息系统避免分布式事务?
    jvm调休,监控
    ClassLoader原理
    JVM结构、GC工作机制详解
    单链表倒置
    hashSet
    HashMap
    hashcode
    深入理解HTTP协议、HTTP协议原理分析
    HTTP协议(详解一)
  • 原文地址:https://www.cnblogs.com/er-dai-ma-nong/p/5045717.html
Copyright © 2020-2023  润新知