//根据正则表达式过滤非法的字符串 + (NSString *)filterCharactor:(NSString *)str withRegexString:(NSString *)regexStr { NSError * error = nil; NSRegularExpression * ex ...
分类:
其他好文 时间:
2017-03-01 12:44:00
阅读次数:
123
WWDC 2015 宣布了新的 Swift 2.0. 这次重大更新给 Swift 提供了新的异常处理方法。这篇文章会主要围绕这个方面进行讨论。 ##如何建造异常类型? 在 iOS 开发当中,我们会面对很多异常处理。在 Cocoa Touch 中我们使用NSError来进行异常处理。在新的 Swift ...
分类:
编程语言 时间:
2017-02-07 10:55:51
阅读次数:
235
iOS常用公共方法 1. 获取磁盘总空间大小 //磁盘总空间 + (CGFloat)diskOfAllSizeMBytes{ CGFloat size = 0.0; NSError *error; NSDictionary *dic = [[NSFileManager defaultManager] ...
分类:
移动开发 时间:
2016-12-02 21:58:35
阅读次数:
316
+ (NSString*)dictionaryToJson:(NSDictionary *)dic { NSError *parseError = nil; NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dic options: ...
分类:
移动开发 时间:
2016-09-26 17:42:53
阅读次数:
385
#####7 NSURLSession实现文件上传 (1)实现文件上传的方法 ```objc /* 第一个参数:请求对象 第二个参数:请求体(要上传的文件数据) block回调: NSData:响应体 NSURLResponse:响应头 NSError:请求的错误信息 */ NSURLSession ...
分类:
移动开发 时间:
2016-09-12 00:34:42
阅读次数:
268
1. 获取磁盘总空间大小 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 //磁盘总空间 + (CGFloat)diskOfAllSizeMBytes{ CGFloat size = 0.0; NSError *error; NSDictionary *di ...
分类:
移动开发 时间:
2016-09-02 15:54:17
阅读次数:
239
点击(此处)折叠或打开 NSString* path = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"xml"]; NSLog(@"path=%@",path); NSError *error=nil; NSString* fi ...
分类:
其他好文 时间:
2016-09-02 00:31:06
阅读次数:
114
NSError *error; //获取温度 //加载一个NSURL对象 NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://api.thinkpage.cn/v3/weather/d ...
分类:
其他好文 时间:
2016-08-15 16:01:51
阅读次数:
143
一、简单说明 1.关于音乐播放的简单说明 (1)音乐播放用到一个叫做AVAudioPlayer的类 (2)AVAudioPlayer常用方法 加载音乐文件 - (id)initWithContentsOfURL:(NSURL *)url error:(NSError **)outError; - ( ...
分类:
移动开发 时间:
2016-08-13 19:42:38
阅读次数:
234
//当上传或下载数据成功时执行;当任务被取消时也会执行 - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error /* Since iO ...
分类:
Web程序 时间:
2016-08-09 12:11:09
阅读次数:
189