I cannot find the right format specifier for int64_t
int64_t var;
[NSString stringWithFormat:@"value is: %?? ",var];
Try:
int64_t var;
[NSString stringWithFormat:@"value is: %lld",var];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With