Client wants a button on the mobile web app that launches a QR code scan (with camera on iPad) then returns to the mobile web app with the QR code info. Wondering how best to achieve this and/or if it's even possible. Thanks!
相关问题
- how do you prevent page scroll in textarea on mobi
- How make QR code from object of a class or several
- How to change the backgroundColor for all UITableV
- The bundle identifier cannot be changed from the c
- execute method when iPhone enters landscape mode
相关文章
- How do you detect key up / key down events from a
- Can I release an app without the device?
- Universal iPad App rejected because of launch cras
- Android cameraSource.stop() causing app to freeze
- What does the “Use for Development” button in Xcod
- Does the iOS-Simulator use multiple cores?
- iPad modal form sheet takes up the whole screen an
- How to get the x, y position of a detected QR code
Yes, see the
zxing:
URL format here.The best thing would be to use a bluetooth barcode scanner. Something like Socket scan , CX2864-1336 would work for well for this. I've seen it used with an ipad to manage inventory.
Seems like that would require two separate native applications. Both using URL schemes to jump to the other and pass information. If you have a web app and check for a QR code scanner's URL scheme it's totally possible for your web app to launch a QR code scan but passing data back would require a native app. Oh, and I'm not sure if there are any QR code apps with a scheme.
Not really possible, sorry.
The closest you can get is some apps have a URL scheme (
redlaser://
, for example) that you could provide a link to. There's no way of detecting that they've got the app installed, though.