我似乎无法让 PhoneGap RevMob 插件在 iOS 上运行。我按照 Github 页面上的安装说明进行操作,但我的应用程序上没有显示任何广告。我的 index.html 代码如下:
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<title>Hello World</title>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
function onDeviceReady() {
RevMob.initWithAppId("APP-ID");
}
function onBodyLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}
</script>
</head>
<body onLoad="onBodyLoad()">
</body>
看来我的应用程序中未加载 revmob.js 文件。请让我知道我做错了什么。
PS:我使用的是Phonegap 3.5。