分享

iOS-应用间通信之自定义URL Schemes

 ccccshq 2014-04-09


一、URL Schemes知识的了解

URL Scheme是类似http://, ftp://这样的东西,同样你也可以为自己的应用自定URL Scheme,其他应用通过此标识就可以访问你的应用,如果自定的URL Scheme 和系统应用的相同,则会调用系统应用,而不会调用自定的应用程序。
例如:invoking://com.hello/yourpath/?username=WT&password=123456&callback=myapp
其中invoking是URL Scheme 即[url scheme],com.hello是host,即[url host], yourpath是path,即[url path],username=WT&password=123456&callback=myapp是query,即[url query]。

二、调用自己开发的应用

1)在plist文件中,注册自定对外接口

CFBundleURLName(URL Identifier) A string containing the abstract name of the URL scheme. To ensure uniqueness, it is recommended that you specify a reverse-DNS style of identifier, for example, com.acme.myscheme.The string you specify is also used as a key in your app’s InfoPlist.strings file. The value of the key is the human-readable scheme name.

CFBundleURLSchemes(URL Schemes) An array of strings containing the URL scheme names—for example, http, mailto, tel, and sms.

可以设置多个(URL Schemes),设置成功后如下:


调用方的部分代码如下:

[objc] view plaincopy在CODE上查看代码片派生到我的代码片
  1. - (void)viewDidLoad  
  2. {  
  3.     [super viewDidLoad];  
  4.     // Do any additional setup after loading the view.  
  5.     CGRect rectTextView= CGRectMake(10.0f30.0f300.0f100.0f);  
  6.     self.textView = [[UITextView alloc] initWithFrame:rectTextView];  
  7.     [self.textView.layer setBorderColor:[UIColor lightGrayColor].CGColor];  
  8.     [self.textView.layer setBorderWidth:0.5f];  
  9.     [self.textView setText:@"username=WT&password=123456&callback=invoking"];  
  10.     [self.view addSubview:self.textView];  
  11.       
  12.     CGRect rect = CGRectMake(10.0f150.0f300.0f40.0f);  
  13.     UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];  
  14.     button.frame = rect;  
  15.     [button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];  
  16.     [button setTitle:@"Login" forState:UIControlStateNormal];  
  17.     [button setBackgroundColor:[UIColor blueColor]];  
  18.     [button addTarget:self action:@selector(handle:) forControlEvents:UIControlEventTouchUpInside];  
  19.     [button.layer setMasksToBounds:YES];  
  20.     [button.layer setCornerRadius:5.0f];  
  21.     [self.view addSubview:button];  
  22. }  
  23.   
  24. - (void)handle:(id)sender  
  25. {  
  26.       
  27.     NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:
  28. @"invoked://com.hello/path?%@"self.textView.text]];  
  29.     if ([[UIApplication sharedApplication] canOpenURL:url]) {  
  30.         [[UIApplication sharedApplication] openURL:url];  
  31.     } else {  
  32.         UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"message" 
  33. message:[NSString stringWithFormat:@"%@", url] 
  34. delegate:self cancelButtonTitle:@"确定" 
  35. otherButtonTitles:nil, nil nil];  
  36.         [alertView show];  
  37.     }  
  38. }  

被调用方的接收代码:

[objc] view plaincopy在CODE上查看代码片派生到我的代码片
  1. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation  
  2. {  
  3.     NSLog(@"%@", url);  
  4.     if ([[url scheme] isEqualToString:@"invoked"]) {  
  5.         if ([[url host] isEqualToString:@"com.hello"]) {  
  6.             NSString *query = [url query];  
  7.             NSArray *array = [query componentsSeparatedByString:@"&"];  
  8.               
  9.             NSMutableDictionary *dic = [NSMutableDictionary dictionaryWithCapacity:10];  
  10.             for (NSString *item in array) {  
  11.                 NSArray *valueArray = [item componentsSeparatedByString:@"="];  
  12.                 [dic setValue:[valueArray objectAtIndex:1] forKey:[valueArray objectAtIndex:0]];  
  13.             }  
  14.             [self application:application didFinishLaunchingWithOptions:dic];  
  15.         }  
  16.         return YES;  
  17.     }  
  18.     return NO;  
  19. }  

同样,可以在传入参数中设置一些预留字段,以便以后扩展,要实现再能够回调回去,就可以加一个callback字段,如:callback=myapp 后面跟上自己应用的URL Scheme,再将执行完成的结果返回回去。代码处理和被调用方大致相同。

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多