根据PhoneGap 文档,我可以像这样编写 JavaScript 概念验证:
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 项目。
问:我需要编写 XCode 应用程序才能使用 PhoneGap 的条形码扫描仪功能吗?