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 6816505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:56:03+00:00 2026-05-26T20:56:03+00:00

I have about 200 String values and each string needs to be placed into

  • 0

I have about 200 String values and each string needs to be placed into 1 of 20 arrays (sometimes more than 1). The data is all static and I know ahead of time which array I want each string to be placed into.

I’d like to create a plist to hold my strings. Each entry in the plist is a key-value dictionary. One key-value will be the string itself. But I also want to add an array to each dictionary, and the array will contain a list of the name of each array that the string should be placed into.

So I’m wondering, is there a way to reference a variable from my plist? I’d like to be able to just add a string into the plist with a value that is the name of my array variable. At some later time from my code, I want to retrieve that string from the plist and convert it into a reference to the variable with the same name. Any ideas how to do this?

Thanks!

Sunny

  • 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-26T20:56:04+00:00Added an answer on May 26, 2026 at 8:56 pm

    You need a dictionary that maps an “array name” to the array object. For example:

    NSMutableArray *redThings = [NSMutableArray array];
    NSMutableArray *greenThings = [NSMutableArray array];
    NSMutableArray *blueThings = [NSMutableArray array];
    
    NSDictionary *arraysByName = [NSDictionary dictionaryWithObjectsAndKeys:
        redThings, @"redThings",
        greenThings, @"greenThings",
        blueThings, @"blueThings",
        nil];
    
    NSArray *plist = loadThePropertyList();
    
    for (NSDictionary *item in plist) {
        NSString *theStringItself = [item objectForKey:@"theStringItself"];
        NSArray *arrayNames = [item objectForKey:@"arrayNames"];
        for (NSString *arrayName in arrayNames)
            [[arraysByName objectForKey:arrayName] addObject:theStringItself];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a huge string of raw text that is about 200,000 words long.
I have a large text string and about 200 keywords that I want to
I have about 200 Excel files that are in standard Excel 2003 format. I
I have about 200 categories that are nested. I am currently reading the documention
i have a table with about 200,000 records. i want to add a field
I have a CSV file that holds about 200,000 - 300,000 records. Most of
I have a Postgres instance building a GIN index. It's looking at about 200,000
I have about 150 000 rows of data written to a database everyday. These
I have about 10million values that I need to put in some type of
I have about 50 images of 50 x 50 pixel size each. I want

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.