CommonTaoBao.m 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. //
  2. // CommonTaoBao.m
  3. // sdjy
  4. //
  5. // Created by Virgil on 2017/9/26.
  6. // Copyright © 2017年 Virgil. All rights reserved.
  7. //
  8. #import "CommonTaoBao.h"
  9. @implementation CommonTaoBao
  10. + (void)showItemInWebOrAppWithTypeFrom:(NSString *)typeFrom urlstr:(NSString *)url
  11. {
  12. if ([typeFrom isEqualToString:@"tmall"])
  13. {
  14. [self showItemInTmall4iOS:url];
  15. }
  16. else if([typeFrom isEqualToString:@"taobao"])
  17. {
  18. [self showItemInTaobao4iOS:url];
  19. }else{
  20. [self tongwanWeb:[NSURL URLWithString:url]];
  21. }
  22. }
  23. + (void)showItemInTmall4iOS:(NSString *)itemId
  24. {
  25. NSURL *url;
  26. if([itemId rangeOfString:@"detail.tmall."].location != NSNotFound) //判断Url是否是天猫商品的链接
  27. {
  28. NSRange range = [itemId rangeOfString:@"id="]; //在URL中找到商品的ID
  29. if(range.location != NSNotFound)
  30. {
  31. NSString *productID = [itemId substringWithRange:NSMakeRange(range.location + 3, 11)];
  32. NSString *appUrl = [NSString stringWithFormat:@"tmall://tmallclient/?{\"action\":\"item:id=%@\"}", productID];
  33. url = [NSURL URLWithString:[appUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
  34. if ([[UIApplication sharedApplication] canOpenURL:url])
  35. {
  36. // 如果已经安装天猫客户端,就使用客户端打开链接
  37. [[UIApplication sharedApplication] openURL:url];
  38. }
  39. else
  40. {
  41. //客户手机上没有装天猫客户端,这时启动浏览器以网页的方式浏览该商品。
  42. url = [NSURL URLWithString:[itemId stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
  43. [[UIApplication sharedApplication] openURL:url];
  44. }
  45. }
  46. }
  47. }
  48. + (void)showItemInTaobao4iOS:(NSString *)itemId
  49. {
  50. // 构建淘宝客户端协议的 URL
  51. NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"taobao://item.taobao.com/item.htm?id=%@", itemId]];
  52. // 判断当前系统是否有安装淘宝客户端
  53. if ([[UIApplication sharedApplication] canOpenURL:url]) {
  54. // 如果已经安装淘宝客户端,就使用客户端打开链接
  55. [[UIApplication sharedApplication] openURL:url];
  56. } else {
  57. // 否则使用 Mobile Safari 或者内嵌 WebView 来显示
  58. url = [NSURL URLWithString:[NSString stringWithFormat:@"http://item.taobao.com/item.htm?id=%@", itemId]];
  59. // [[UIApplication sharedApplication] openURL:url];
  60. [self tongwanWeb:url];
  61. }
  62. }
  63. + (void)tongwanWeb:(NSURL *)url
  64. {
  65. [[UIApplication sharedApplication] openURL:url];
  66. }
  67. @end