Okay, I got through the initial bumps of setting everything up correctly, and I have a great tabbed application that does almost everything I need:
I have two tabs, a Scan and a Tickets tab. The Tickets tab presents a web view that allows users to select a ticket. Once they have selected a ticket, they can start scanning. The scanner reads a barcode, this barcode is successfully decoded and stored as a property called scanResults. What I would like to happen from this point is to send a new URL to my web view that is a direct copy of the current URL, but with the scanned number added as a php parameter. The problem is, whenever I try this my web view freezes. It seems I can't manipulate my web view from outside of the tab that controls it. Ideally, I'd like to simply have a url format that changes each time a barcode is scanned, like:
"www.mywebsite.com?scannedNumbers=" (scanned number here)
Can anyone suggest what I do from here? If I need to post code I can, I know my scanner works, and I know my web view will work if I load the site without using the scanner first, so the individual elements work fine.