vote up 1 vote down star

Is it possible to loop through enum values in Objective-C?

flag

56% accept rate
Retagged: this is (AFAIK) a pure C question. You'll get more response with the more general tagging. – Brian Postow Nov 2 at 19:45
1  
It also answers the question for people searching for it in Obj-C. Added that tag back. – pbh101 Nov 2 at 19:47

3 Answers

vote up 1 vote down

If you enum is defined as follows:

enum Direction {  East,  West,  North,  South};

You can loop through it this way:

for ( int direction = East; direction <= South; ++direction)
{
   /* Do something with Direction
}
link|flag
The for-loop body won't run with direction == South. You are missing one iteration. – notnoop Nov 2 at 18:24
@notnoop thanks, corrected – ennuikiller Nov 2 at 18:26
I've never done this, so I have some questions. Shouldn't it be Direction.East and Direction.South? Also shouldn't the condition be direction <= Direction.South? Again I've never done this, I'm not trying to correct you, just would like to learn. – Blaenk Nov 2 at 18:28
3  
Is there a better way to do this? Just curious, but it seems like depending on the declaration order of the enum values is fragile at best. – Ed Swangren Nov 2 at 18:34
1  
@Ed: Yes this is fragile, and no there's not a better way. It's not advisable to do this at all. – Chuck Nov 2 at 19:23
show 3 more comments
vote up 4 vote down

Given

enum Foo {Bar=0,Baz,...,Last};

you can iterate the elements like:

for(int i=Bar; i<=Last; i++) {
  ...
}

Note that this exposes the really-just-an-int nature of a C enum. In particular, you can see that a C enum doesn't really provide type safety, as you can use an int in place of an enum value and visa versa. In addition, this depends on the declaration order of the enum values: fragile to say the least. In addition, please see Chuck's comment; if the enum items are non-contiguous (e.g. because you specified explicit, non-sequential values for some items), this won't work at all. Yikes.

link|flag
3  
It also requires that all the items in the enum be contiguous. But it's the best you'll get. – Chuck Nov 2 at 19:23
it doesn't recognize Foo in the for looo for me. – Frank Nov 2 at 19:24
actually, it should be int i=Bar ..... Foo is the type name. – Brian Postow Nov 2 at 19:44
Oops... sorry about the for loop declaration typo. Fixed now. – Barry Wark Nov 2 at 19:48
vote up 2 vote down

It's a bit of a kludge (as is the entire concept so... eh...) but if you're going to do this multiple times, and you want to be able to deal with the possibility of non-contiguous enums, you can create a (global constant) array, and have (to use ennukiller's example) Directions directions[4] = {East, West, North, South}; and then in your loop you can talk about directions[i] rather than iterating directly over the directions themselves...

As I said, it's ugly, but it's slightly less fragile I think...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.