当前位置:主页 > 移动开发 > iOS代码 >

iOS二维码的生成代码

时间:2021-02-23 15:15:23 | 栏目: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

您可能感兴趣的文章:

相关文章