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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:20:17+00:00 2026-05-23T23:20:17+00:00

I’m searching for a better alternative to deal with this problem. In a CoreData

  • 0

I’m searching for a better alternative to deal with this problem.

In a CoreData model I have an NSManagedObject called Project. In its subclass I override the accessor method (setter) for its label attribute. Here I check whether the same label is already used. If it is, I add an underscore and a number to the label, e.g. “MyProject” is renamed to “MyProject_1”. Of course I also have to check whether I find the label “MyProject” or “MyProject_”+number. I do that with a Regular Expression.

NSString *regexString = [NSString stringWithFormat:@"%@_[0-9]+", value];

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"(label = %@) OR (label MATCHES %@)", value, regexString];
[request setPredicate:predicate];

Then I check how many results are fetched, lets say 5, so I know that the next one hast to be called “MyProject_6”.

It works fine but you probably have already noticed that there is a little problem with this code: What happens if I have the following labels:

MyProject_1, MyProject_2, MyProject_3

and the user decides to call a project MyProject_55.
Then my search would retrieve 4 elements and the next project would be labeled MyProject_5 instead of MyProject_4. And what it’s worse, at some point, I would end up having two MyProject_55. I know it’s unlikely to happen, but it can :).

Any ideas for something better?

Here’s the accessor method

#pragma mark - Setter for label

- (void)setLabel:(NSString *)aLabel
{
    if ([[self primitiveValueForKey:@"label"] isEqualToString:aLabel]) 
    {
        return;
    }

    NSMutableArray *objects = [self fetchObjectsWithValueEqualTo:aLabel];
    NSUInteger objectsCount = [objects count];

    aLabel = objectsCount > 0 ? [NSString stringWithFormat:@"%@_%d",aLabel, objectsCount] : aLabel;

    [self willChangeValueForKey:@"label"];
    [self setPrimitiveValue:aLabel forKey:@"label"];
    [self didChangeValueForKey:@"label"];
}
  • 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-23T23:20:18+00:00Added an answer on May 23, 2026 at 11:20 pm

    Its a little expensive but the simplest way out of this dilemma is once you have a new label decision “MyLabel_4” recheck if that label exists in the store.

    Rinse and repeat until you really have a unique label. Core Data is very efficient so this isnt going to matter in a userland case.

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

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
This could be a duplicate question, but I have no idea what search terms
I know there's a lot of other questions out there that deal with this
I have been unable to fix a problem with Java Unicode and encoding. The
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i

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.