このNSURLConnectionデリゲートメソッドを使用しています
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
long long rdata = [response expectedContentLength];
NSLog(@"Response Length : %lld", rdata);
}
常に-1を表示します
long long変数のフォーマット指定子は何ですか?
ありがとう