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
iPhones with iOS 11 and above have an in-built QR Code scanner that can be accessed via the native camera app or the Control Panel. To view the QR Code scanner on iPhone, click on the Camera icon and point to a QR Code to view the information.
Now with iOS 7 it can be done directly without additional libraries. There's an excellent example at https://github.com/shu223/iOS7-Sampler
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];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With