How to Generate QR Code from iPhone with Password protection?. I should generate QR code for given Image with Password protection. When read it from iPhone

link|improve this question

41% accept rate
1  
Use zxing's iPhone module. – Matt Ball Apr 5 '11 at 14:33
What do you mean by password protection? – ceejayoz Apr 5 '11 at 14:42
feedback

4 Answers

up vote 1 down vote accepted

You can use this framework : onbarcode or zxing

link|improve this answer
feedback

I have found one very simple way how to generate QR Code using Google Api.Just take 1 UIWebView in your code I have taken IBOutlet UIWebView *webView; and I want add this Much of Information in My QR Code. 1.Business Name 2.First Name and Last Name 3.Physical Address and phone 4.Website

NSString *url=[NSString stringWithFormat:@"http://chart.apis.google.com/chart?cht=qr&chs=200x200&chl=MECARD:ORG%@CN%@%@CTEL%@CADR%@%@%@%@%@CEMAIL%@",[d valueForKey:@"QR Business Name"],[d valueForKey:@"QR First Name"],[d valueForKey:@"QR Last Name"],[d valueForKey:@"QR Phone"],[d valueForKey:@"QR Physical Address"],[d valueForKey:@"QR Physical City"],[d valueForKey:@"QR Physical State"],[d valueForKey:@"QR Physical Zip"],[d valueForKey:@"QR Physical Zip Plus 4"],[d valueForKey:@"QR Website"]];

url=[url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

//Create a URL object.
NSURL *Curl=[NSURL URLWithString:url];
//URL Requst Object
NSURLRequest *request = [NSURLRequest requestWithURL:Curl];
//Load the request in the UIWebView.
[webView loadRequest:request];
link|improve this answer
feedback

You can try https://github.com/myang-git/QR-Code-Encoder-for-Objective-C. Recently I added the ability to encrypt/decrypt by AES

link|improve this answer
feedback

Here first we will discuss how to generate QR code. You can download sample code from https://github.com/myang-git/QR-Code-Encoder-for-Objective-C. Normally QR code available in black & white color. But, you can change color of QR code with the above code. Developer can also add some nice images to QR code.

Please follow below steps to make QR generator in iPhone.

First you need to download source-code from above link.

Then you need to import all class which are necessary for QR library.

Once you add all class you can pass string for which you want to pass QR code.

for e.g form the mail you need to pass string MAILTO:idevfans@gmail.com.

Please find below link for mpre information.

http://www.idevfans.com/how-to-generate-qr-code-in-iphone-application/

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.