I am looking for an iPhone/iPad app that will allow me to place a URL in front of the QR code's content.

For example, if the QR code contains the text "12345", then I would like to be able to add "http://www.example.com/?user=" in front of the text as it's read, in order to direct to the PHP page, to set the value of a variable.

I'm not sure what the best way to do this would be, so I'm just looking for some guidance.

link|improve this question
feedback

1 Answer

The normal process while reading a QRCode is using a Library like Zxing or Zbar. What they do is present the camera to read the QR code. Once they decrypted the code, they just return a string with the content to you (via a delegate method). Then you could add the part before that text with the following snippet.

NSString* escaped = [qrstring stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]
NSString* url = [NSString stringWithFormat:@"http://www.example.com/?user=%@", escaped]; 

I'm not quite sure if I understood your question correctly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.