添加依赖库 LocalAuthentication.framework#import // 头文件 LAContext *context = [[LAContext alloc] init]; NSError *error = nil; // 这句代码是让指纹验证的提示框没有输入密码 cont...
分类:
移动开发 时间:
2015-11-24 12:29:46
阅读次数:
168
7.1 涉及知识点(1)实现文件上传的方法/* 第一个参数:请求对象 第二个参数:请求体(要上传的文件数据) block回调: NSData:响应体 NSURLResponse:响应头 NSError:请求的错误信息 */ NSURLSe...
分类:
Web程序 时间:
2015-11-06 23:33:21
阅读次数:
286
在模拟器中录音功能正常,在真机上需要以下操作,才能正常录音 AVAudioSession * session = [AVAudioSession sharedInstance]; _session = session; NSError * sessionError; [sessi...
分类:
移动开发 时间:
2015-11-04 22:43:27
阅读次数:
1191
NSDictionary to jsonString [self DataTOjsonString:dic]-(NSString*)DicToJsonString:(id)object{ NSString *jsonString = nil; NSError *error; NSD...
分类:
移动开发 时间:
2015-10-16 20:20:17
阅读次数:
150
NSError *error; NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:Online_Case_Lists]]; NSData *response = [NSURLConnection s.....
分类:
移动开发 时间:
2015-10-14 10:32:24
阅读次数:
180
#import<Foundation/Foundation.h>#import"AFNetworking.h"typedefvoid(^DidFinishBlock)(AFHTTPRequestOperation*operation,idresult);typedefvoid(^DidFailBlock)(AFHTTPRequestOperation*operation,NSError*error);@interfaceDataService:NSObject//声明类方法+(AFHTT..
分类:
其他好文 时间:
2015-10-08 18:30:08
阅读次数:
149
objc block参数上的__autoreleasing怎么理解看到这样的block的声明- (void)XXXXXXX:(NSError * __autoreleasing *)error{ ... *error = ...... ...} 于是将__autoreleasing去掉,...
分类:
其他好文 时间:
2015-10-03 00:55:59
阅读次数:
261
1 NSError *error = nil; 2 NSData* videoData = [NSData dataWithContentsOfURL:[NSURL URLWithString:self.recordFilePath] options:0 error:&error]; 3 ...
分类:
Web程序 时间:
2015-09-15 14:37:46
阅读次数:
254
开始在cell中是使用这个函数来加载图片的。[self.photoView sd_setImageWithURL:[NSURL URLWithString: [post objectForKey: @"thumb_url"]] completed:^(UIImage *image, NSError ...
分类:
Web程序 时间:
2015-09-11 18:53:52
阅读次数:
234
#import "AFNetworking.h"typedef void(^SuccessBlock)(AFHTTPRequestOperation * operation, id responseObj);typedef void(^FailBlock)(NSError * error, id r...
分类:
Web程序 时间:
2015-09-04 22:22:30
阅读次数:
264