I have a NSMutableDictionary, with values. One of the values is an NSString "1".
I get it like this:
NSString *currentCount = [perLetterCount valueForKey:firstLetter];
then I convert it to an int:
int newInt = (int)currentCount;
And I display both like this:
NSLog(@"s: %@, i: %i", currentCount, newInt);
I get this as a result:
c: 1, i: 156112
What am I doing wrong ?
Thank you