IOS

关注公众号 jb51net

关闭
首页 > 软件编程 > IOS > iOS二维码

iOS二维码的生成代码

作者:弦外雨

这篇文章主要为大家详细介绍了iOS二维码的生成代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了iOS二维码的生成代码,供大家参考,具体内容如下

一、工程图。

 

二、代码。

ViewController.m

#import "ViewController.h"
#import "ScanViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
 [super viewDidLoad];
 // Do any additional setup after loading the view, typically from a nib.
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
 ScanViewController *scanView=[[ScanViewController alloc]init];
 [self.navigationController pushViewController:scanView animated:NO];
 
}
- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
}

@end

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文