long integer value objective-c

long-integer, objective-c

Solution

Try with

NSLog(@"%lld", [myValue longlongValue]);

Problem

I have long integer value ( ex: 2705758126 ) in NSString. When i try to show it: NSLog(@"%i", [myValue integerValue]); it return: 2147483647. How to show, compare and etc. this long integer

Original source