私はこのアドリーにオブジェクトを送っています:_https://sandbox.iTunes.Apple.com/verifyReceipt
_
NSUrlconnection
で、私はこのデリゲートメソッドでそれを読み込もうとしています:
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
このように:
NSlog(@"%@",response);
私はこのコードを取得しています:
_<NSHTTPURLResponse: 0x7d2c6c0>
_なんとかして文字列を取得する必要があります。どうすれば読むことができますか?
私は別の質問にこの答えを書きましたが、それはあなたを助けると思います。特に方法を見てください
-(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];
}
NSHTTPURLResponse * httpResponse = (NSHTTPURLResponse *) response;
int errorCode = httpResponse.statusCode;
NSString *fileMIMEType = [[httpResponse MIMEType] lowercaseString];
詳細については、iOSドキュメント:NSHTTPURLResponse
を確認してください。
そして辛抱強く:すべての接続がNSHTTPURLResponse
を返すわけではありません
接続が使用できるデータを受信していると予想される場合。
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
その後、データをNSString
に変換するだけです。
サブクラスを作成して、- (NSString*) description
メソッドをオーバーライドできます。