I have only basic objective-c knowledge.
I saw a code snippet of an iOS project, which uses the following statement for a property:
@interface Store : NSObject
{
}
@property (nonatomic) long long amount; // 2 long type? why?
...
@end
Why is there a long long type definition?
What does it mean?