I want to implement a switchs/case where I can use a string to evaluate the switch case.
switch (tmp) {
case one:
NSLog(@"the string value of tmp is one");
break;
any of you knows how can I implement something like this?
I really appreciate your help