-1

httpリクエスト、GET、PUTに関するチュートリアル、例、またはドキュメントを教えてください。

JSON パッケージを URL との間で送受信する必要があります。

HTTP リクエストからの JSON の受信に関する客観的な情報があまり見つかりません。

どんな助けでも大歓迎です。

4

1 に答える 1

0

AFnetworkingを使用するのが最善の方法 です。

これが次の例です。

 NSDictionary *parameters = [NSDictionary dictionaryWithObjectsAndKeys:emailUITextView.text, @"email",  passwordUITextView.text,@"password",  customerType,@"usertype", nil];
    NSURL *url = [NSURL URLWithString: BASE_URL];
    AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];

    [httpClient postPath:@"/sign_in" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject) {
        NSLog(@"Success : %@", operation.responseString);
        if([operation.responseString isEqualToString:@"true"])
            NSLog(@"Signed In successfully");         
        else if ([operation.responseString isEqualToString:@"false"])
            NSLog(@"Signed In unsuccessfully");
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        NSLog(@"Failure : %@", error);
        UIAlertView *alert = [[ UIAlertView alloc]initWithTitle:@"Error" message:[error localizedDescription] delegate:self cancelButtonTitle:@"ok" otherButtonTitles:nil, nil];
        [alert show];
    }];         
于 2013-07-05T15:28:47.237 に答える