如何在iPhone中生成二维码?

发布于 2024-10-30 16:12:43 字数 66 浏览 1 评论 0原文

如何从 iPhone 生成带有密码保护的二维码?我应该为给定的图像生成带有密码保护的二维码。当从 iPhone 读取时

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

霞映澄塘 2024-11-06 16:12:43

现在使用 iOS 7 可以直接完成,无需额外的库。 https://github.com/shu223/iOS7-Sampler 有一个很好的例子

Now with iOS 7 it can be done directly without additional libraries. There's an excellent example at https://github.com/shu223/iOS7-Sampler

一桥轻雨一伞开 2024-11-06 16:12:43

我找到了一种非常简单的方法如何使用 Google Api 生成 QR 码。只需在代码中取 1 UIWebView 我已取 IBOutlet UIWebView *webView;我想在我的二维码中添加大量信息。
1.企业名称
2.名字和姓氏
3.实际地址和电话
4.网站

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];

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];
寻找一个思念的角度 2024-11-06 16:12:43

您可以使用此框架:onbarcodezxing

You can use this framework : onbarcode or zxing

才能让你更想念 2024-11-06 16:12:43

您可以尝试 https://github.com/myang-git/ Objective-C 的 QR 码编码器。最近我添加了通过 AES 加密/解密的功能

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文