Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xcode5 と ios7 を使用していますが、コンパイラに次のエラーが表示されます: Implicit conversion loses integer precision long long to NSInteger
if (statusCode == 200 && !upload) { totalBytesExpectedToRead = [response expectedContentLength];
何か助けはありますか?
NSURLResponse expectedContentLengthタイプを返しますlong long。
NSURLResponse expectedContentLength
long long
totalBytesExpectedToRead変数を として宣言したと思われます。そうすると、エラーはなくなりますNSInteger。long long
totalBytesExpectedToRead
NSInteger
long long totalBytesExpectedToRead;