web-dev-qa-db-ja.com

NSURLresponseを読む

私はこのアドリーにオブジェクトを送っています:_https://sandbox.iTunes.Apple.com/verifyReceipt_

NSUrlconnectionで、私はこのデリゲートメソッドでそれを読み込もうとしています:

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)responseこのように:

NSlog(@"%@",response);私はこのコードを取得しています:

_<NSHTTPURLResponse: 0x7d2c6c0>_なんとかして文字列を取得する必要があります。どうすれば読むことができますか?

14
or azran

私は別の質問にこの答えを書きましたが、それはあなたを助けると思います。特に方法を見てください

-(void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data

そして

-(void) connectionDidFinishLoading:(NSURLConnection *)connection


-(void) requestPage
{
    NSString *urlString = @"http://the.page.you.want.com";
    NSURL *url = [NSURL URLWithString:urlString];

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLCacheStorageAllowed timeoutInterval:20.0f];


    responseData = [[NSMutableData alloc] init];
    connection = [[NSURLConnection connectionWithRequest:request delegate:self] retain];
    delegate = target;
}


-(void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{   
    if ([response isKindOfClass:[NSHTTPURLResponse class]])
    {
        NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse*) response; 
        //If you need the response, you can use it here
    }
}

-(void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    [responseData appendData:data];
}

-(void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    [responseData release];
    [connection release];
}

-(void) connectionDidFinishLoading:(NSURLConnection *)connection
{
    if (connection == adCheckConnection)
    {
        NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];

        //You've got all the data now
        //Do something with your response string


        [responseString release];
    }

    [responseData release];
    [connection release];
}
18
James Webster
NSHTTPURLResponse * httpResponse = (NSHTTPURLResponse *) response;
int errorCode = httpResponse.statusCode;
NSString *fileMIMEType = [[httpResponse MIMEType] lowercaseString];

詳細については、iOSドキュメント:NSHTTPURLResponseを確認してください。

そして辛抱強く:すべての接続がNSHTTPURLResponseを返すわけではありません

6
Nekto

接続が使用できるデータを受信して​​いると予想される場合。

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data

その後、データをNSStringに変換するだけです。

3

サブクラスを作成して、- (NSString*) descriptionメソッドをオーバーライドできます。

1
SAKrisT