What is long long type ? It’s an integer which takes 8 bytes , am I right? I want to convert long long type into NSString as follows.
long long fbid = [[friend objectForKey:@"id"]longLongValue];
I want value of fbid in my NSString *str variable. What can I do?
1 Answer