i see, i have change it. now how can i get the key value, 11231654?
as in i would to have a NSString = *number;
number will be equal to 11231654, so that i can use number to compare will others.
thks for the help!
@"11231654"
[NSString stringWithFormat:@"%i", 11231654]
[[NSNumber numberWithInteger:11231654] stringValue]
someLabelContainingNumbers.text
hi, thks for the reply.
if i use:
Code:array3 objectForKey:@"11231654"
i will be "looking" at the array inside the key 11231654, correct?
how can i "look at" the key(s) inside array3?
correct me if, i am wrong, but i should not be using objectforkey here.