1

我正在使用 xcode5 和 ios7,编译器向我显示了这个错误:隐式转换将整数精度长整型丢失到 NSInteger

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

有什么帮助吗?

4

1 回答 1

1

NSURLResponse expectedContentLength返回类型long long

我怀疑您已将totalBytesExpectedToRead变量声明为NSInteger,如果您将其声明为,则long long错误将消失。

long long totalBytesExpectedToRead;
于 2013-09-26T03:54:28.800 回答