现在,我通过WKWebView
嵌入了一个HTML。如果用户单击a
元素,我想打开Apple Map APP。似乎没有任何事情发生,只有背景颜色发生了变化。
我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
a {
display: block;
font-size: 20px;
width: 200px;
height: 100px;
margin: 100px auto;
text-align: center;
}
</style>
</head>
<body>
<h1>open the apple map</h1>
<a href="maps:ll=38.897096,-77.036545" class="context-block-button map-button" id="map-button-1"><i class="ss-map icon-left"></i><span>Open in map (maps:)</span></a>
</body>
<script src="../js/jquery.min.js"></script>
<script>
$('body').on('click','a',function () {
$('body').css('background-color','blue');
window.location.href = " http://maps.apple.com/?q=Mexican+Restaurant&sll=50.894967,4.341626&z=10&t=s";
})
</script>
</html>
在Safari中,我复制“http://maps.apple.com/?q=Mexican+Restaurant&sll=50.894967,4.341626&z=10&t=s”。然后Safari将在Mac上打开Apple App。
我必须使用Swift4
API打开Apple Map App吗?
还有一件事,如果解决方案必须更改info.plist
或更改应用目标设置,感谢您为我写这封信。
答案 0 :(得分:0)
是的,您需要使用Swift API并需要实现WKNavigationDelegate,添加decisionPolicyForNavigationAction方法。
从另一个帖子中检查answer。