I am new to objective C. I have created an NSString array by the following way:
static NSString* fontSizeName[] =
{
@"14",
@"18",
@"22",
@"26",
@"30",
@"34",
};
Now, i have the value, "26", how can i get the index of it in fontSizeName[]?
Thanks for input.