NSURLSession一共有四种Delegate (文后附表有Session和SessionTask分类表格)NSURLSessionDelegate, NSURLSessionDownloadDelegate,NSURLSessionTaskDelegate, NSURLSessionDataD...
分类:
移动开发 时间:
2015-09-16 10:51:13
阅读次数:
191
***********#import "HMViewController.h"@interface HMViewController () @end@implementation HMViewController- (void)viewDidLoad{ [super viewDidLoad];...
分类:
移动开发 时间:
2015-09-15 11:08:53
阅读次数:
172
***************#import "HMViewController.h"@interface HMViewController ()@end@implementation HMViewController- (void)viewDidLoad{ [super viewDidLoa...
分类:
移动开发 时间:
2015-09-15 11:07:08
阅读次数:
221
************#import "HMViewController.h"@interface HMViewController () @property (nonatomic, weak) UIActivityIndicatorView *loadingView;@end@implement...
分类:
移动开发 时间:
2015-09-15 10:53:47
阅读次数:
247
********#import "HMViewController.h"@interface HMViewController () @end@implementation HMViewController/** test.html存在于服务器,里面的html和js代码,我们是无法修改的 如果tes...
分类:
移动开发 时间:
2015-09-15 10:43:23
阅读次数:
148
****02-ASI01-基本使用(了解)03-ASI02-其他用法(了解)04-ASI03-POST请求(了解)05-ASI04-文件下载(了解)06-ASI05-文件上传(了解)07-UIWebView01-基本使用(了解)08-网页开发学习#import "HMViewController.h...
分类:
移动开发 时间:
2015-09-15 10:35:23
阅读次数:
192
01 数据的安全01 - 密码加密02 数据的安全02 - 加密过程01 -数据的安全01 - 本地存储和代码安全04-网络状态监控05-真机演示06-小文件下载07-大文件下载01-基本下载08-大文件下载02-显示下载进度09-大文件下载03-利用NSFileHandle优化内存10-大文件下载...
分类:
移动开发 时间:
2015-09-14 16:44:11
阅读次数:
176
**************#import "HMViewController.h"#import "MBProgressHUD+MJ.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UITextField *...
分类:
移动开发 时间:
2015-09-14 15:25:46
阅读次数:
224
*****************#import "HMViewController.h"#import "MBProgressHUD+MJ.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UITextFiel...
分类:
移动开发 时间:
2015-09-14 15:22:34
阅读次数:
186
上篇的连接方式皆为同步连接,这次就详细介绍一下网络连接的方式一、连接方式分两种:同步和异步 同步连接 1, 使用 [NSURLConnection sendSynchronousRequest:]方法 2,会出现卡顿现象 异步连接分两种:block 和 delegate 1...
分类:
移动开发 时间:
2015-09-12 14:44:51
阅读次数:
196