注意 ,[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error)这种方法用了默认配置,那么c...
分类:
移动开发 时间:
2015-07-21 12:13:31
阅读次数:
140
1.首先导入头文件#import 2.关键代码- (void)validateTouchID { LAContext *context = [[LAContext alloc] init]; NSError *error; NSString *tip = @"通过Home键验证已有...
分类:
移动开发 时间:
2015-07-19 19:33:22
阅读次数:
173
1、url中找字段+(NSString *)jiexi:(NSString *)CS webaddress:(NSString *)webaddress{ NSError *error; NSString *regTags=[[NSString alloc] initWithFormat...
分类:
其他好文 时间:
2015-07-10 12:52:21
阅读次数:
113
步骤一:声明NSError变量。一定要加"?",不加或者加"!"都不行。因为使用了optional,所以要用var而不用let。
var error: NSError?
步骤二:使用的时候在变量前加上"&"。
NSJSONSerialization.JSONObjectWithData(data!, options: .MutableContainers, error: &error)
之...
分类:
编程语言 时间:
2015-07-09 17:55:44
阅读次数:
168
swift 团队一直在优化,让大家准备在秋天的时候,迁移到swift2做准备。一、错误处理异常处理,不是NSError对象和双指针。可以使用 throws 来指定方法来抛出一个错误。调用do try catch 多个关键字来捕获和处理错误。NSError对象的引用,inout方法会赋值给错误变量,....
分类:
编程语言 时间:
2015-06-24 18:25:42
阅读次数:
136
在?didFinishLaunchingWithOptions?中?添加
?
?//后台读报
????NSError?*error?=?NULL;
????AVAudioSession?*session?=?[AVAudioSession?sharedInstance];
????[session?setCategory...
分类:
移动开发 时间:
2015-06-23 18:25:50
阅读次数:
148
Swift 2.0 异常处理WWDC 2015 宣布了新的 Swift 2.0. 这次重大更新给 Swift 提供了新的异常处理方法。这篇文章会主要围绕这个方面进行讨论。如何建造异常类型?在 iOS 开发当中,我们会面对很多异常处理。在 Cocoa Touch 中我们使用 NSError 来进行异常...
分类:
移动开发 时间:
2015-06-20 11:49:54
阅读次数:
164
#include
//存储内存
- (float)getFreeDiskspace{
float totalSpace;
float totalFreeSpace=0.f;
NSError *error = nil;
NSArray *paths =
NSSearchPathForDirectoriesInDomains(NSDoc...
分类:
移动开发 时间:
2015-06-18 13:38:53
阅读次数:
163
用POST方式上传数据时,数组怎么处理?NSError *error;NSData *jsonData = [NSJSONSerialization dataWithJSONObject:data options:NSJSONWritingPrettyPrinted error:&error];//...
分类:
移动开发 时间:
2015-06-16 16:06:45
阅读次数:
109
在coredata 数据库结构被更改后,没根据要求立即建立新version,而是在原version上进行了小修改,之后才想起来建立新版本。并通过以下代码合并数据库, NSError *error = nil; NSDictionary *options = [NSDictionary dict...
分类:
移动开发 时间:
2015-06-09 19:46:02
阅读次数:
255