Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3636682
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T01:03:51+00:00 2026-05-19T01:03:51+00:00

In Java, you can make an enum having multiples values. In objective-C, this cannot

  • 0

In Java, you can make an enum having multiples values.
In objective-C, this cannot be done easily.
I’ve read many pages about this but I didn’t found anything satisfying that would allow me to use enums by a simple way and to keep the enum declaration and their different values in the same file.

I would like to write something like this in a enums.h :

// ========================================
typedef enum {eRED, eGREEN, eBLUE} ColorEnum;
int colorValues[] = { 0xFF0000, 0x00FF00, 0x0000FF };
NSArray *colorNames = [NSArray arrayWithObjects:@"Red color", @"light green", @"Deep blue", nil];
// ========================================

and be able to use thoses global variables to manage my stuff anywhere like :

int color = colorValues[eRED];

But I don’t know how to write this.
I have compile errors like “ColorValues” is defines many times.
Or if I just use “static”, I have many “ColorValues” not used in .m file…

Could you help me ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T01:03:51+00:00Added an answer on May 19, 2026 at 1:03 am

    I tryed the following thing that works like a charm :

    in enums.h

    @interface enums
        // here, the enum and its values are in the same place.
    
        typedef enum {eRED, eGREEN, eBLUE} ColorEnum;
        #define kColourValue  { 0xFF0000, 0x00FF00, 0x0000FF }
        extern int colourValues[];
    @end
    

    in enums.m

    @implementation enums
        int colorValues[] = kColourValue;
    @end
    

    And you have a perfect Java style implementation of enums in Objective-C.
    Wow, two weeks of searches….

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I make this java generic cast ? public interface IField { }
I wanted to make Map of Collections in Java, so I can make something
How can i make my Java Swing GUI Components [Right To Left] for Arabic
In Java you can read a file embedded inside a JAR-file by using the
Java .class files can be decompiled fairly easily. How can I protect my database
Can a Java Applet able to print out text/html easily to standard printer driver(s)
Possible Duplicate: java PreparedStatement Can I make the prepared statement SELECT * FROM STUDENTS
In Java you can give the number zero as a single parameter for the
In Java you can do File.listFiles() and receive all of the files in a
I'm wondering if a Java library can be called from a VB.net application. (A

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.