今天做项目用到指纹识别,但是单指纹识别技术实现起来并不复杂,但是验证成功之后需要刷新UI这里我就跳进了一个坑了😂😂😂.因为指纹验证也是在子线程进行的 要么是等待很长时间,要么就是报乱七八糟的错误,看的我也是醉了 #import "ViewController.h" //本地验证框架,用于指纹识 ...
分类:
移动开发 时间:
2017-02-27 13:12:33
阅读次数:
245
然后再viewcontroller里面就可以写 一般我们都会封装一个AFN的网络请求 可以满足我们基本上的任何需要 但是偶尔我们也是要用一些 ...
分类:
Web程序 时间:
2017-02-24 22:09:52
阅读次数:
194
// // ViewController.m // 01-性能优化 #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [s... ...
分类:
其他好文 时间:
2017-02-23 14:02:16
阅读次数:
176
// // ViewController.m // 03-tableView的代理方法 #import "ViewController.h" @interface ViewController () @property (weak, nonatomic) IBOutlet UITableView *... ...
分类:
其他好文 时间:
2017-02-23 13:41:00
阅读次数:
164
#import "ViewController.h" #import "UIColor+Hex.h" #define XMGColor(r,g,b) [UIColor colorWithRed:(r) / 256.0 green:(g) / 256.0 blue:(b) / 256.0 alpha:... ...
分类:
其他好文 时间:
2017-02-23 00:08:58
阅读次数:
165
// // ViewController.m // 06-UITableView02-单组数据 #import "ViewController.h" #import "XMGHero.h" @interface ViewController () /** 英雄数据 */ @property (non... ...
分类:
其他好文 时间:
2017-02-22 13:19:55
阅读次数:
158
// // ViewController.m // 05-UITableView01-多组数据 #import "ViewController.h" #import "XMGCar.h" #import "XMGCarGroup.h" @interface ViewController () @pr... ...
分类:
其他好文 时间:
2017-02-22 12:39:49
阅读次数:
172
// // ViewController.m // CNBlogs // // Created by PXJ on 16/5/27. // Copyright © 2016年 PXJ. All rights reserved. // #import "ViewController.h" @inter ...
分类:
其他好文 时间:
2017-02-21 17:14:10
阅读次数:
164
interface ViewController () /**获取.plist数据*/ @property (nonatomic,strong) NSArray *aps; @end @implementation ViewController - (void)viewDidLoad { [supe... ...
分类:
移动开发 时间:
2017-02-18 23:58:19
阅读次数:
1197
@interface ViewController () @property (nonatomic,strong) NSArray *apps; //获取.plist数据 @end @implementation ViewController - (void)viewDidLoad { [super... ...
分类:
移动开发 时间:
2017-02-18 14:19:38
阅读次数:
163