问:
I'm a bit lost on AFNetorking's Reachability and haven't found a lot of good information out there.
I have an app that logs into a web API. Each VC connects to the API in some way so each VC need...
分类:
其他好文 时间:
2014-11-14 00:19:13
阅读次数:
393
I'm a newbie in obj-c and have been using asihttp for some of my projects. When doing a post request in asihttp its done this way.
ASIFormDataRequest *request = [ASIFormDataRequest requestWithU...
分类:
其他好文 时间:
2014-11-12 23:03:24
阅读次数:
276
一、早前的几个网络框架1、ASI框架:HTTP终结者.很牛,但是有BUG,已经停止更新.2、MKNetworkKit(印度人写的).3、AFN一直还在更新.AFNetworking的出现:MAC/iOS设计的一套网络框架.(为了简化网络操作)地址:https://github.com/AFNetwo...
分类:
移动开发 时间:
2014-11-05 19:27:50
阅读次数:
162
1.Reachability// 监听网络状态改变的通知[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkStateChange) name:kReachabilityChangedNot...
分类:
移动开发 时间:
2014-10-24 16:22:23
阅读次数:
343
ASI和AFN有什么区别1.性能(重点)* ASI基于底层的CFNetwork框架* AFN基于NSURLConnection* 运行性能: ASI > ASN2.处理服务器数据1> AFN : 根据服务器返回数据的数据, 进行自动解析* 服务器返回的是JSON数据, 自动转换为NSDictiona...
分类:
移动开发 时间:
2014-10-24 16:11:10
阅读次数:
189
1 五.AFN 2 1.GET\POST 3 1> GET请求 4 // 1.获得请求管理者 5 AFHTTPRequestOperationManager *mgr = [AFHTTPRequestOperationManager manager]; 6 7 // 2.封装请求参数 8 NSM.....
分类:
移动开发 时间:
2014-10-24 16:01:52
阅读次数:
197
概括:HTTP请求可以使用NSURLConnection、NSURLSession、AFN、ASI等方式实现,其中又包括了get、post两种请求方式和同步、异步两种程序执行方式。NSURLConnection1 get方式的同步请求/*** get同步请求*/-(void) getSynch{ /...
分类:
移动开发 时间:
2014-10-04 02:06:45
阅读次数:
379
1,iOS中AFN Get请求包含中文时崩溃NSString *search = @"http://60.206.137.156:8020/video_api/user/search/51234562346412e86a730d94fef7cc73/中";[manger GET: search pa...
分类:
其他好文 时间:
2014-09-28 21:34:15
阅读次数:
145
OC第三方框架-AFN的使用//// ViewController.m// AFN断点续传演练//// Created by apple on 13-7-30.// Copyright (c) 2013年 Jackie. All rights reserved.//#import "View...
分类:
其他好文 时间:
2014-09-03 14:55:16
阅读次数:
241