Possible Duplicate:
Storing and retrieving unsigned long long value to/from NSString
I am trying to create a unsigned long long from a string so I can use the value in elsewhere but not having much luck doing so...Here is what I am using to attempt this
-(void)unsignedLongValue{
NSString *theString = [NSString stringWithFormat:@"%llu", [NSNumber
unsignedLongLongValue]];
theString = [[_message objectForKey:@"user"] objectForKey:@"id"];
NSLog(@"%llu");
}
If you have any suggestions or know of any good articles I would be very much appreciative if you could inform me! thanks!