2013-01-24 92 views
0

我試圖讓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代碼:

https://github.com/phonegap/phonegap-plugins/blob/master/iPhone/BarcodeScanner/test/phonegap-app/phonegap-app.js

但是,當我點擊掃描按鈕掃描儀,它失敗了,我得到這個錯誤在日誌中:

BarcodeScanner失敗:excep重刑掃描:類型錯誤:「未定義」不是一個對象

+0

爲什麼你不使用iOS的BarcodeScanner插件? –

回答

1

你可以試試下面的事情:
1)改變Cordova.plist和barcodescanner javascript文件字符串「org.apache.cordova.barcodeScanner」到「CDVBarcodeScanner」 。
2)在barcodescanner.js中:
a)將科爾多瓦改爲科爾多瓦
b)開始時用hasResource和addResource註釋行。

希望這會有所幫助。

+0

我終於修好了,我會上傳整個項目,這樣每個人都可以使用它 –