美文网首页
二维码生成

二维码生成

作者: 0bf43b438419 | 来源:发表于2018-12-20 16:00 被阅读0次

    #import "QRCodeGenerator.h"
    @interface ViewController ()
    {
       
        UITextField*field;
       
        UIButton*btn;
       
        UIImageView*imgVV;
       
    }
    @end

    @implementation ViewController

    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
        self.view.backgroundColor = [UIColor whiteColor];
        field = [[UITextField alloc]initWithFrame:CGRectMake((self.view.frame.size.width-200)/2,100,200,44)];
        field.placeholder = @"请输入内容";
        field.borderStyle = UITextBorderStyleRoundedRect;
        [self.view addSubview:field];
            btn= [[UIButton alloc]initWithFrame:CGRectMake((self.view.frame.size.width-200)/2,180,200,44)];
            [btn setTitle:@"点击生成二维码" forState:UIControlStateNormal];
            btn.backgroundColor = [UIColor lightGrayColor];
            [btn addTarget:self action:@selector(abc) forControlEvents:UIControlEventTouchUpInside];
            [self.view addSubview:btn];
    }
    -(void)abc{
            imgVV= [[UIImageView alloc]initWithFrame:CGRectMake((self.view.frame.size.width-200)/2,300,200,200)];
            imgVV.image = [QRCodeGenerator qrImageForString:field.text imageSize:imgVV.bounds.size.width];
            [self.view addSubview:imgVV];



    }

    相关文章

      网友评论

          本文标题:二维码生成

          本文链接:https://www.haomeiwen.com/subject/pwadkqtx.html