91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ios 如何使用 ASIHttpRequest進行http通信

發布時間:2020-08-02 10:42:34 來源:網絡 閱讀:971 作者:manlianman 欄目:移動開發

ASIHTTPRequest是一個對CFNetwork API進行了封裝,并且使用起來非常簡單的一套API,用Objective-C編寫,可以很好的應用在Mac OS X系統和iOS平臺的應用程序中。ASIHTTPRequest適用于基本的HTTP請求,和基于REST的服務之間的交互。如果想要在項目中使用asihttprequest,需要進行如下的配置:

1:首先需要有ASIHTTPRequest 的資源包。下載地址:http://down.51cto.com/data/1984747

2:在xcode 中右鍵項目選擇“Add Files to ”選項:如下圖

ios 如何使用 ASIHttpRequest進行http通信

3:選擇第1步準備好的asi的類庫源文件,如下圖:

ios 如何使用 ASIHttpRequest進行http通信

選擇Copy items if needed .

這樣ASI的類庫源文件就已經添加完畢了。接下來,我們要設置ASI的源文件不使用ARC機制,具體做法就是在項目中的ASI源文件中的Complier Flags 中設置為 -fno-objc-arc 。首先選中項目的targets 的Build Phases ,如下圖:

ios 如何使用 ASIHttpRequest進行http通信

就是雙擊每個ASI源文件的Complier Flags 然后填上  -fno-objc-arc

接下來需要在frameworks 中添加libz.dylib ,在項目的targets 選擇 link Binary With libraried ,點擊+號進行添加,如下圖:

ios 如何使用 ASIHttpRequest進行http通信

用ASI框架進行通信的簡單DEMO如下:

 

#import "ViewController.h"
#import "ASIFormDataRequest.h"
#import "JSONKit.h"

@interface ViewController ()<ASIHTTPRequestDelegate>
{
   
}

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
   
    [self.bt addTarget:self action:@selector(login) forControlEvents:UIControlEventTouchDown];

}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


//登錄
-(void)login{
   
    //測試用
    NSMutableDictionary *dicLogin=[NSMutableDictionary dictionary];
    [dicLogin setObject:@"1" forKey:@"userid"];
    NSString *strJson = [dicLogin JSONString];
    NSLog(@"%@",strJson);
    NSURL* url = [NSURL URLWithString:@"http://10.129.240.243:7001/initblogserver/handlogin?userid=1"];
    ASIFormDataRequest* request=[ASIFormDataRequest requestWithURL:url];
    request.delegate=self;
    [request setDidFinishSelector:@selector(loginRequestDone:)];
    [request setDidFailSelector:@selector(loginRequestFail:)];
    [request startAsynchronous];
   
    //生產的用
    //    NSMutableDictionary *dicLogin=[NSMutableDictionary dictionary];
    //    NSString* smsCode=self.cTxt.text;
    //    [dicLogin setObject:smsCode forKey:@"smsCode"];
    //    NSString *strJson = [dicLogin JSONString];
    //    ASIFormDataRequest* request=[ASIFormDataRequest requestWithURL:LOGIN_SERV];
    //    [request setPostValue:strJson forKey:@"logjson"];
    //    request.delegate=self;
    //    [request setDidFinishSelector:@selector(loginRequestDone:)];
    //    [request setDidFailSelector:@selector(loginRequestFail:)];
    //    [request startAsynchronous];
   
}

//登錄驗證請求正常
-(void)loginRequestDone:(ASIHTTPRequest*)request{
    NSData* responseData=[request responseData];
    NSString* responseStr=[request responseString];
    // 返回的數據
    NSLog(@"%@",request.responseString);
}


//登錄驗證請求失敗
-(void)loginRequestFail:(ASIHTTPRequest*)request{
    //取消等待框
    UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"服務器錯誤" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:@"Ok", nil,nil];
    [alertView show];
    NSLog(@"服務器錯誤%@",request.error);
}

@end

 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

怀远县| 桃江县| 怀集县| 渑池县| 印江| 特克斯县| 汉中市| 德保县| 永安市| 淮滨县| 如皋市| 庄浪县| 上虞市| 江川县| 赣榆县| 石柱| 信阳市| 开江县| 沁水县| 浠水县| 甘德县| 巴林右旗| 玉溪市| 汽车| 乌兰浩特市| 宜良县| 友谊县| 南召县| 永新县| 阜阳市| 昌平区| 南涧| 韶山市| 容城县| 洛浦县| 清镇市| 蓝山县| 大名县| 长垣县| 鲜城| 寻乌县|