第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在WebApp中怎么使用JS調(diào)用iOS的函數(shù)?

在WebApp中怎么使用JS調(diào)用iOS的函數(shù)?

慕森王 2018-11-22 19:15:16
在WebApp中怎么使用JS調(diào)用iOS的函數(shù)
查看完整描述

1 回答

?
守著一只汪

TA貢獻(xiàn)1872條經(jīng)驗(yàn) 獲得超4個(gè)贊

先看一下Web中,我們給h1標(biāo)簽添加一個(gè)onclick事件,讓它在被點(diǎn)擊之后,修改當(dāng)前的url。
Web中的HTML代碼
<html>
<head>
<script>

function getInfo(name)
{
window.location = "/getInfo/"+name;
}

</script>

</head>

<body>
<h1 onclick="getInfo('why')">Name</h1>
</body>

</html>

iOS中,先拖拽WebView,訪問localhost,然后通過WebView的委托事件監(jiān)聽url跳轉(zhuǎn)操作,并且把跳轉(zhuǎn)截取下來。
也就是說,在onclick的時(shí)候,普通瀏覽器灰跳轉(zhuǎn)到那個(gè)url,但是在iOS的這個(gè)WebView里面,這個(gè)跳轉(zhuǎn)會(huì)被攔截,
用這種方式可以巧妙地實(shí)現(xiàn)JS調(diào)用iOS的原生代碼:

//
// DWViewController.m
// DareWayApp
//
// Created by why on 14-6-3.
// Copyright (c) 2014年 DareWay. All rights reserved.
//

#import "DWViewController.h"

@interface DWViewController ()

@property (weak, nonatomic) IBOutlet UIWebView *myWebview; // 主頁面

@end

@implementation DWViewController

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

// 適配iOS6的狀態(tài)欄
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
_myWebview.frame = CGRectMake(0,20,self.view.frame.size.width,self.view.frame.size.height-20);
}

// 加載制定的URL
NSURL *url =[NSURL URLWithString:@"http://localhost"];
NSURLRequest *request =[NSURLRequest requestWithURL:url];
[_myWebview setDelegate:self];
[_myWebview loadRequest:request];

}

// 網(wǎng)頁中的每一個(gè)請求都會(huì)被觸發(fā)
-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{

// 每次跳轉(zhuǎn)時(shí)候判斷URL

if([request.mainDocumentURL.relativePath isEqualToString:@"/getInfo/why"])
{
NSLog(@"why");
return NO;
}

return YES;
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}



查看完整回答
反對 回復(fù) 2018-12-11
  • 1 回答
  • 0 關(guān)注
  • 747 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號