1

xcode5 と ios7 を使用していますが、コンパイラに次のエラーが表示されます: Implicit conversion loses integer precision long long to NSInteger

     if (statusCode == 200 && !upload) {
    totalBytesExpectedToRead = [response expectedContentLength];

何か助けはありますか?

4

1 に答える 1

1

NSURLResponse expectedContentLengthタイプを返しますlong long

totalBytesExpectedToRead変数を として宣言したと思われます。そうすると、エラーはなくなりますNSIntegerlong long

long long totalBytesExpectedToRead;
于 2013-09-26T03:54:28.800 に答える