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

  • Home
  • SEARCH
  • 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 3458178
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T09:57:02+00:00 2026-05-18T09:57:02+00:00

I have 2 core data entities: Question, and QuestionType. Every Question has exactly 1

  • 0

I have 2 core data entities: Question, and QuestionType. Every Question has exactly 1 QuestionType.

QuestionType has a typeName string attribute; which is primarily how I identify which QuestionType it is. It is fixed to a list of a few different types. I am wondering if it is possible to use the list of all the QuestionTypes in the data as an enum, or if not, what’s the best way to use this list to assign a QuestionType to a Question, and check the QuestionType later?

Currently, when I want to assign a type to a question (based on knowing the typeName), I am doing this:

NSFetchRequest *questionTypeFetchRequest = [[NSFetchRequest alloc] init];
questionTypeFetchRequest.entity = [NSEntityDescription entityForName:@"QuestionType" inManagedObjectContext:self.managedObjectContext];
NSPredicate *questionTypePredicate = [NSPredicate predicateWithFormat:@"typeName like %@", [questionData objectForKey:@"questionType"]];
questionTypeFetchRequest.predicate = questionTypePredicate;
question.questionType = [[self.managedObjectContext executeFetchRequest:questionTypeFetchRequest error:&error] objectAtIndex:0];

This seems like a lot of work just to assign a QuestionType to my Question! And I have to repeat this for other similar entities.

And then when I want to check the QuestionType later, I am doing:

 if ([question.questionType.typeName isEqualToString:@"text"]){

This works fine, but I feel like I should be comparing the question.questionType to the specific QuestionType I am looking for, as opposed to just comparing the typeName.

Is there any way to set up an enum to hold my QuestionTypes, so that I can do this:

question.questionType = Text;
switch(question.questionType)
{
    case Text:
  • 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-18T09:57:03+00:00Added an answer on May 18, 2026 at 9:57 am

    Does questionType have to be an object? If you want to use an enum, you can just declare your questionType property of the Question entity to be an integer, not another entity like QuestionType.

    Or, you can declare your questionType property to be a string, and directly keep typeName there.

    Even when you use an enum, the syntax is not like EnumName.EnumKind in C / Objective-C. See any textbook for the syntax.

    If you keep using questionType as an entity, I would suggest you to cache the results of the fetch in the dictionary, as in:

       (QuestionType*)questionTypeWithName:(NSString*)name 
       {
            static NSMutableDictionary*dict=nil;
            if(!dict){
                 dict=[[NSMutableDictionary alloc] init]];
            }
            QuestionType*qt=[dict objectForKey:name];
            if(qt){
                  return qt;
            }else{
                NSFetchRequest *questionTypeFetchRequest = [[NSFetchRequest alloc] init];
                    ...
                NSArray*result = ... executeFetchRequest: ...
                if(result){
                      ...
                      add the resulting qt to the dict ... 
                      ...
                }else{
                      create a new QuestionType entity with a given name
                      add it to the dict.
                      return it.
                }
            }
       }
    

    and something like that.

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

Sidebar

Related Questions

No related questions found

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.