码迷,mamicode.com
首页 >  
搜索关键字:nserror    ( 121个结果
iOS9 集成指纹解锁
添加依赖库 LocalAuthentication.framework#import // 头文件 LAContext *context = [[LAContext alloc] init]; NSError *error = nil; // 这句代码是让指纹验证的提示框没有输入密码 cont...
分类:移动开发   时间:2015-11-24 12:29:46    阅读次数:168
NSURLSession实现文件上传
7.1 涉及知识点(1)实现文件上传的方法/* 第一个参数:请求对象 第二个参数:请求体(要上传的文件数据) block回调: NSData:响应体 NSURLResponse:响应头 NSError:请求的错误信息 */ NSURLSe...
分类:Web程序   时间:2015-11-06 23:33:21    阅读次数:286
iOS录音功能真机调试失败
在模拟器中录音功能正常,在真机上需要以下操作,才能正常录音 AVAudioSession * session = [AVAudioSession sharedInstance]; _session = session; NSError * sessionError; [sessi...
分类:移动开发   时间:2015-11-04 22:43:27    阅读次数:1191
iOS不使用JSONKit做Dic到JsonString的转换
NSDictionary to jsonString [self DataTOjsonString:dic]-(NSString*)DicToJsonString:(id)object{ NSString *jsonString = nil; NSError *error; NSD...
分类:移动开发   时间:2015-10-16 20:20:17    阅读次数:150
iOS 笔记-Data argument not used by format string的警告处理
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怎么理解
objc block参数上的__autoreleasing怎么理解看到这样的block的声明- (void)XXXXXXX:(NSError * __autoreleasing *)error{ ... *error = ...... ...} 于是将__autoreleasing去掉,...
分类:其他好文   时间:2015-10-03 00:55:59    阅读次数:261
dataWithContentsOfURL报错问题
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
SDWebImage在UITableView部分CELL图片无法加载的解决办法
开始在cell中是使用这个函数来加载图片的。[self.photoView sd_setImageWithURL:[NSURL URLWithString: [post objectForKey: @"thumb_url"]] completed:^(UIImage *image, NSError ...
分类:Web程序   时间:2015-09-11 18:53:52    阅读次数:234
AFNetworking封装的网络请求
#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
121条   上一页 1 ... 3 4 5 6 7 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!