0
PhoneGap documentationよると、私は、概念実証のこのようなJavaScriptを記述することができます。iPhoneカメラでXCodeプロジェクトを作成する必要がありますか?
window.plugins.barcodeScanner.scan(
function(result) {
if (result.cancelled)
alert("the user cancelled the scan")
else
alert("we got a barcode: " + result.text)
},
function(error) {
alert("scanning failed: " + error)
}
)
をしかし、それは、Xcodeプロジェクトについて話を始めます。
Q:PhoneGapのバーコードスキャナ機能を使用するには、Xcodeアプリケーションを作成する必要がありますか?