【代码笔记】iOS-二维码_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 【代码笔记】iOS-二维码

【代码笔记】iOS-二维码

 2017/8/8 11:31:23  弦外雨  程序员俱乐部  我要评论(0)
  • 摘要:一,工程图。二,代码。ViewController.m#import"ViewController.h"#import"ScanViewController.h"@interfaceViewController()@end@implementationViewController-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.}-(void
  • 标签:笔记 iOS 代码 二维码

一,工程图。

 

二,代码。

ViewController.m

class="cnblogs_code_copy" style="font-size: 18px">复制代码
#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
复制代码

 

发表评论
用户名: 匿名