我試圖讓XZing我的PhoneGap的iPhone應用程序運行:PhoneGap的QR碼掃描通過XZing
做了一些研究之後,我發現這個鏈接,最好的說明安裝XZing我的應用程序:
Why can't XCode 4 find my .h files during a build?
我完成了這些步驟並運行了沒有錯誤的應用程序。
現在我嘗試運行的掃描儀和我用的是BarcodeScanner測試文件,這裏是我的代碼
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; 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" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
</head>
<body onLoad="onLoad()">
<div class="app">
<div id="running-bits">
<button id="scan-button">scan: ?</button>
<p>(<span id="test-count-current">?</span>
/
<span id="test-count-total">?</span>)
<p><img id="image" src="">
<p>expected text:
<br><tt><span id="test-text">?</span></tt>
</div>
<p><b id="test-done"></b>
<br><button id="start-over">start over</button>
<p>Results:
<ul id="results-list">
</ul>
</div>
<script type="text/javascript" src="cordova-2.3.0.js"></script>
<script src="js/barcodescanner.js"></script>
<script src="js/phonegap-app.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</body>
</html>
在下面的鏈接的PhoneGap-app.js代碼:
但是,當我點擊掃描按鈕掃描儀,它失敗了,我得到這個錯誤在日誌中:
BarcodeScanner失敗:excep重刑掃描:類型錯誤:「未定義」不是一個對象
爲什麼你不使用iOS的BarcodeScanner插件? –