<p>AFN的基本使用在此就不在多说了,先上代码,我自己对AFN的二次封装,只考虑了对http请求的封装, 后面我会写一篇文章专门对webservice的soap封装,</p>
<p><br> </p>
<p></p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> //</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> // JKAFNetTool.h</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> // JKqyApp</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> //</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> // Created by dllo on 15/12/15.</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> // Copyright 2015年 dllo. All rights reserved.</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> //</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; min-height:13px"> <br> </p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(209,47,27)"> <span style="color:#78492a">#import </span><Foundation/Foundation.h></p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; min-height:13px"> <br> </p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> <span style="color:#bb2ca2">typedef</span> <span style="color:#bb2ca2">NS_ENUM</span>(NSUInteger, JKresponseStyle) {<!-- --></p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> JKJSON,</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> JKXMl,</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> JkDATA,</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> };</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; min-height:13px"> <br> </p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; min-height:13px"> <br> </p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; min-height:13px"> <br> </p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> <span style="color:#bb2ca2">typedef</span> <span style="color:#bb2ca2">NS_ENUM</span>(NSUInteger, JKrequestStyle) {<!-- --></p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> JKrequestJSON,</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> JKrequestString,</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; min-height:13px"> </p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> };</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; min-height:13px"> <br> </p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'"> <span style="color:#bb2ca2">@interface</span> JKAFNetTool : <span style="color:#703daa"> NSObject</span></p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; min-height:13px"> <br> </p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> /**</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> * Post请求</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> *</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> * @param url 请求网址</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> * @param body body体</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; line-height:normal; font-family:'Heiti SC Light'; color:rgb(0,132,0)"> * @param requestStyle 请求数据类型</p>
<p style="margin-top:0px; margin-bottom:0px; font-size:13px; li |
|