Read NSURLresponse

ぃ、小莉子 提交于 2019-11-30 16:41:15

问题


i am sending an object to this adrees : https://sandbox.itunes.apple.com/verifyReceipt

with NSUrlconnection and i am trying to read it with this delegate method :

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response like this :

NSlog(@"%@",response); i am getting this code :

<NSHTTPURLResponse: 0x7d2c6c0> i need to get a string somehow. how can i read it?


回答1:


I wrote this answer to another question, but I think it will help you. Have a look in particular at the methods

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

and

-(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];
}



回答2:


NSHTTPURLResponse * httpResponse = (NSHTTPURLResponse *) response;
int errorCode = httpResponse.statusCode;
NSString *fileMIMEType = [[httpResponse MIMEType] lowercaseString];

For more information, check iOS Docs : NSHTTPURLResponse.

And be patient: not all connections return NSHTTPURLResponse




回答3:


If you expect that the connection is receiving some data you can use.

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

you can then simply convert data to NSString.




回答4:


You can create a subclass and override the - (NSString*) description method.



来源:https://stackoverflow.com/questions/8036895/read-nsurlresponse

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!