使用QRCode简单生成二维码

Posted 喵·希尔伯特

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用QRCode简单生成二维码相关的知识,希望对你有一定的参考价值。

//

//  ViewController.m

//  二维码

//

//  Created by 123 on 16/9/4.

//  Copyright © 2016 彭洪. All rights reserved.

//

 

#import "ViewController.h"

#import "QRCodeGenerator.h"//引入库

@interface ViewController ()

 

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    self.view.backgroundColor = [UIColor whiteColor];

    [self initQRCode];

}

 

- (void)initQRCode {

    CGFloat w = [UIScreen mainScreen].bounds.size.width;

    NSArray *arr = @[[QRCodeGenerator qrImageForString:@"Key" imageSize:400],

                     [QRCodeGenerator qrImageForString:@"Key1" imageSize:400 Topimg:[UIImage imageNamed:@"super.jpg"]],

                     [QRCodeGenerator qrImageForString:@"Key3" imageSize:400 withPointType:QRPointRound withPositionType:QRPositionRound withColor:[UIColor redColor]]

                     ];

    for (int i=0; i<3; i++) {

        UIImageView *qr = [[UIImageView alloc] initWithFrame:CGRectMake((i%3)*w/3, 100+(i/3)*w/3, w/3, w/3)];

        qr.image = arr[i];

        [self.view addSubview:qr];

    }

}

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

@end

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

以上是关于使用QRCode简单生成二维码的主要内容,如果未能解决你的问题,请参考以下文章

Java简单的生成/解析二维码(zxing qrcode)

使用qrcode生成二维码

使用jquery-qrcode生成二维码

使用QRCode生成二维码

qrcode-php生成二维码

前端生成二维码 jquery.qrcode.js