码迷,mamicode.com
首页 > 移动开发 > 详细

【代码笔记】iOS-二维码

时间:2017-08-08 10:48:39      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:can   with   mem   warning   ati   sources   http   二维   ted   

一,工程图。

 

技术分享

二,代码。

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-二维码

标签:can   with   mem   warning   ati   sources   http   二维   ted   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/7305229.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!