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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T19:13:37+00:00 2026-06-01T19:13:37+00:00

A typical custom accessor method could be written as the following: – (NSString *)name

  • 0

A typical custom accessor method could be written as the following:

- (NSString *)name
{
    [self willAccessValueForKey:@"name"];
    NSString *myName = [self primitiveName];
    [self didAccessValueForKey:@"name"];
    return myName;
}

- (void)setName:(NSString *)newName
{
    [self willChangeValueForKey:@"name"];
    [self setPrimitiveName:newName];
    [self didChangeValueForKey:@"name"];
}

It’s clear the meaning of setPrimitiveName. It allows you to access the “raw ” variable without KVC (preventing a run loop inside the accessor) and set the value passed in. The same observation can be applied to the getter.

From the documentation it’s clear that setPrimitiveName disables change notifications methods: willChangeValueForKey and counterpart.

Now my question is the following: why do you need to wrap that method inside willChangeValueForKey: and didChangeValueForKey: methods?

Reading the Core Data programming there is written that:

NSManagedObject disables automatic key-value observing (KVO) change
notifications for modeled properties, and the primitive accessor
methods do not invoke the access and change notification methods. For
unmodeled properties, on Mac OS X v10.4 Core Data also disables
automatic KVO; on Mac OS X v10.5 and later, Core Data adopts to
NSObject’s behavior.

Why do I need to inform that I’m ready to access a key (accessor or instance variable) and then I’ve done with it? Who is informed?

Hope my question is clear. Thank you in advance.

  • 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-06-01T19:13:39+00:00Added an answer on June 1, 2026 at 7:13 pm

    You need it to inform the view,that your value has changed.
    Let’ take for example, that you would use MKMapView and put some annotations on it, taking coordinates from Core Data, and then, somehow, you change it’s location.

    If you getter/setter didn’t post these notifications, MKMapView wouldn’t know of these changes in locations, and wouldn’t move it to the new one.

    You can also track the date of creation/change of your objects with these notifications.

    I guess, that redo/undo is also made by this.

    NOTE

    I would like to know, if Core Data uses these notifications somehow under the hood. Does anybody has any ideas on this subject?

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

Sidebar

Related Questions

The typical Python threadpool will have a structure like this one: def run(self): while
I have a typical User model (username, password, name, etc). I want to allow
Consider a typical social networking website, which has more or less the following models:
A typical forward iterator is expected to implement following methods: value_type& operator*(); value_type* operator->();
EditorFor() can take an object additionalViewData parameter which the typical method to populate is
I am trying to analyze c++ files using my custom made parser (written in
If I create a custom routing class, what's the typical convention for where it's
Typical approaches recommend reading the binary via FileStream and comparing it byte-by-byte. Would a
Typical jQuery over-use: $('button').click(function() { alert('Button clicked: ' + $(this).attr('id')); }); Which can be
Typical SAX Parser - I am building a list out of the endElement. 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.