我在这里使用了这个过程来允许javascript从我的iPad应用程序调用objective c:
http://www.stevesaxon.me/posts/2011/window-external-notify-in-ios-uiwebview/
我注入页面的 javascript 代码是:
<script type="text/javascript">;
window.external =
{
'Set_A': function(s) { document.location = 'qms://Set_A?param=' + s; },
'Get_A': function(s) { document.location = 'qms://Get_A'; },
'Set_B': function(s) { document.location = 'qms://Set_B?param=' + s; },
'Get_B': function(s) { document.location = 'qms://Get_B'; },
'Set_C': function(s) { document.location = 'qms://Set_C?param=' + s; },
'Get_C': function(s) { document.location = 'qms://Get_C'; },
'Get_Version': function(s) { document.location = 'qms://Get_Version'; }
};
</script>;
而调用上述方法进行初始化的html代码中的javascript为:
<html>
<body>
...
<script type="text/javascript">
Get_Version();
Set_A(true);
Set_B(false);
Set_C(true);
<script>
</body>
</html>
在上面的 html 中,Objective C 中调用的唯一方法是最后一个方法 Set_C(true);
谢谢。