Want to highlight a helpful answer? Upvote!

Did someone help you, or did an answer or User Tip resolve your issue? Upvote by selecting the upvote arrow. Your feedback helps others! Learn more about when to upvote >

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

enum - error

What am I doing wrong?

This is the entire program.

User uploaded file

Xcode4-OTHER, Mac OS X (10.6.7)

Posted on Dec 29, 2012 4:02 PM

Reply
Question marked as Best reply

Posted on Dec 29, 2012 5:25 PM

Review the language documentation for the switch statement.

This is a sample of the correct usage:


enum RequestAction {Play, Options, Help};


int variable = Play;

switch (variable)

{

case Play:

{

// Do something.

break;

}

caseOptions:

{

// Do something else.

break;

}

case Help:

{

// Do something else.

break;

}

default:

{

// Do something when variable is not Play, Options or Help.

break;

}

}

2 replies
Question marked as Best reply

Dec 29, 2012 5:25 PM in response to GeekPod42

Review the language documentation for the switch statement.

This is a sample of the correct usage:


enum RequestAction {Play, Options, Help};


int variable = Play;

switch (variable)

{

case Play:

{

// Do something.

break;

}

caseOptions:

{

// Do something else.

break;

}

case Help:

{

// Do something else.

break;

}

default:

{

// Do something when variable is not Play, Options or Help.

break;

}

}

enum - error

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.