Html5跳轉(zhuǎn)到APP指定頁面的實(shí)現(xiàn)

1.設(shè)置urlschemes
urlschemes盡量設(shè)一個(gè)唯一的字符串,例如可以設(shè)為:iOS+公司英文名+ 項(xiàng)目工程名
比如我的設(shè)為iOSTencentTest,在瀏覽器中輸入地址iOSTencentTest://即可跳轉(zhuǎn)到我的app
2.跳轉(zhuǎn)到指定頁面
在使用iOSTencentTest://打開app會(huì)調(diào)用AppDelegate的代理方法
-(BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
跳轉(zhuǎn)指定頁面在該方法中操作
iOSTencentTest://后面是可以添加參數(shù)的,例如iOSTencentTest://goodsDetails?id=xxxxx
goodsDetails可直接通過url.host獲取
id=xxxxx 參數(shù)可直接通過url.query獲取
可以根據(jù)自身需求去設(shè)置不同的host和參數(shù)。
h5那邊只需要執(zhí)行:
window.location.href = 'iOSTencentTest://goodsDetails?id=xxxxx'
附:
//獲取Window當(dāng)前顯示的ViewController - (UIViewController*)currentViewController{ //獲得當(dāng)前活動(dòng)窗口的根視圖 UIViewController* vc = [UIApplication sharedApplication].keyWindow.rootViewController; while (1) { //根據(jù)不同的頁面切換方式,逐步取得最上層的viewController if ([vc isKindOfClass:[UITabBarController class]]) { vc = ((UITabBarController*)vc).selectedViewController; } if ([vc isKindOfClass:[UINavigationController class]]) { vc = ((UINavigationController*)vc).visibleViewController; } if (vc.presentedViewController) { vc = vc.presentedViewController; }else{ break; } } return vc; } //NSString類別方法 //通過url.query獲取參數(shù)字符 再分成字典 -(NSMutableDictionary *)getURLParameters { if (!self.length) { return nil; } NSMutableDictionary *params = [NSMutableDictionary dictionary]; if ([self containsString:@"&"]) { NSArray *urlComponents = [self componentsSeparatedByString:@"&"]; for(NSString *keyValuePair in urlComponents) { //生成key/value NSArray *pairComponents = [keyValuePair componentsSeparatedByString:@"="]; NSString *key = [pairComponents.firstObject stringByRemovingPercentEncoding]; NSString*value = [pairComponents.lastObject stringByRemovingPercentEncoding]; //key不能為nil if(key==nil|| value ==nil) continue; id existValue = [params valueForKey:key]; if(existValue !=nil) { //已存在的值,生成數(shù)組。 if([existValue isKindOfClass:[NSArray class]]) { //已存在的值生成數(shù)組 NSMutableArray*items = [NSMutableArray arrayWithArray:existValue]; [items addObject:value]; [params setValue:items forKey:key]; }else{ //非數(shù)組 [params setValue:@[existValue,value]forKey:key]; } }else{ //設(shè)置值 [params setValue:value forKey:key]; } } }else { //單個(gè)參數(shù)生成key/value NSArray *pairComponents = [self componentsSeparatedByString:@"="]; if(pairComponents.count==1) { return nil; } //分隔值 NSString *key = [pairComponents.firstObject stringByRemovingPercentEncoding]; NSString *value = [pairComponents.lastObject stringByRemovingPercentEncoding]; //key不能為nil if(key ==nil|| value ==nil)return nil; //設(shè)置值 [params setValue:value forKey:key]; } return params; }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
HTML5 History API 實(shí)現(xiàn)無刷新跳轉(zhuǎn)
有一次在上**網(wǎng)的時(shí)候,發(fā)現(xiàn)登陸、注冊(cè)動(dòng)畫效果非常華麗,但讓我感到震驚的是頁面竟能夠?qū)崿F(xiàn)無刷新跳轉(zhuǎn),回顧了所學(xué)的前端知識(shí),似乎沒有任何技術(shù)可以實(shí)現(xiàn)這一點(diǎn),于是百度2016-01-11