生成二维码
我需要使用 Objective-C 生成 QRCodes。是否有可用的库/框架?谢谢
I need to generate QRCodes using objective-c. Is there a library/framework already available for that?Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我在我的一个项目中使用了这个简单的代码来编码 QRCode。您可以使用:
实施.m
I used this simple code to encode a QRCode in one of my projects. You can use:
Implementation .m
查看 http://code .google.com/p/simplehttp/source/browse/trunk/qrencode/qrencode.c?r=78。
如果您可以从 Objective-C 调用 C 例程,那么您就准备好了。
Take a look at http://code.google.com/p/simplehttp/source/browse/trunk/qrencode/qrencode.c?r=78.
If you can call C-routines from objective-C, then you are set.
zxing 具有适用于 iPhone 的 QR 模块。
zxing has QR module for an iPhone.
如果您正在寻找 Objective-C 的编码器,我刚刚从 Psytec 实现中移植了一个。看看 https://github.com/myang-git /QR-Code-Encoder-for-Objective-C。它很新,所以请让我知道任何评论。
If you are looking for an encoder for Objective-C, I just ported one from the Psytec implementation. Take a look at https://github.com/myang-git/QR-Code-Encoder-for-Objective-C. It's quite new so let me know of any comments.