iOS二维码的生成代码
来源:爱站网时间:2020-09-04编辑:网友分享
在开发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
上述是爱站技术频道小编为大家带来的iOS二维码的生成代码,相信大家都有所了解,想要了解更多的专业知识,请关注js.aizhan.com。