IOS 仿微信二维码/条形码扫描js与WKwebview交互调取二维码扫描

h5 js调用ios方法,请参考之前的文档

//JS调用OC 添加处理脚本     //ScriptMessageHandler



    [userContentController addScriptMessageHandler:self name:@"CallScanCodeHandler"];

#pragma mark - WKScriptMessageHandler

- (void)userContentController:(WKUserContentController *)userContentController didReceiveScriptMessage:(WKScriptMessage *)message {



    

    if([message.name isEqual:@"CallScanCodeHandler"]){

        NSLog(@"接收到二维码开启命令:%@",message.body);

        [self CallScanCode];



    }

}



-(void)CallScanCode{



    NSLog(@"接收到二维码开启命令:切换到二维码界面");

    ZFScanViewController * vc = [[ZFScanViewController alloc] init];

    vc.returnScanBarCodeValue = ^(NSString * barCodeString){

        //扫描完成后,在此进行后续操作

        NSLog(@"扫描结果======%@",barCodeString);

    };



    [self presentViewController:vc animated:YES completion:nil];



}

 

ZFScan

A simple scan QRCode / BarCode library for iOS - 二维码/条形码 扫描和生成

此框架适用于 >= iOS 8,已支持横竖屏适配,用法简单,喜欢的欢迎star一个,有任何建议或问题可以加QQ群交流:451169423

扫描

用法:

    第一步(step 1)
    将项目里ZFScan整个文件夹拖进新项目
    
    第二步(step 2)
    #import "ZFScanViewController.h"
    
    第三步(step 3)
    ZFScanViewController * vc = [[ZFScanViewController alloc] init];
    vc.returnScanBarCodeValue = ^(NSString * barCodeString){
        //扫描完成后,在此进行后续操作
        NSLog(@"扫描结果======%@",barCodeString);
    };

    [self presentViewController:vc animated:YES completion:nil];

界面效果

 

生成

用法:

    第一步(step 1)
    将项目里ZFScan整个文件夹拖进新项目
    
    第二步(step 2)
    #import "ZFConst.h"
    
    第三步(step 3)
    UIImageView * imageView = [[UIImageView alloc] initWithFrame:CGRectMake(50, 100, 200, 200)];
    //条形码:kCodePatternForBarCode 二维码:kCodePatternForQRCode
    imageView.image = [UIImage imageForCodeString:@"iOS开发" size:imageView.frame.size.width color:ZFSkyBlue pattern:kCodePatternForQRCode];
    [self.view addSubview:imageView];

你可能感兴趣的:(IOS,ios)