I recently tried to compile an older Xcode project (which used to compile just fine), and now I'm seeing a lot of errors of this form:

error: writable atomic property 'someProperty' cannot pair a synthesized setter/getter with a user defined setter/getter

The code pattern which causes these errors always looks like this:

// Interface:

@property (retain) NSObject * someProperty;

// Implementation:

@synthesize someProperty; // to provide the getter
- (void)setSomeProperty:(NSObject *)newValue
{
    //..
}

I can see why the error is being generated. I tell the compiler to synthesize my property accessors (both getter and setter), and then immediately afterward I override the setter manually. That code has always smelled a little off.

So, what is the proper way to do this? If I use @dynamic instead of @synthesize, I will have to write the getter as well. Is that the only way?

link|improve this question

Does this only happen with atomic properties? In case of atomic properties it might be a good idea to keep the getter/setter pair in sync in respect to locking strategy. This is difficult if one part is synthesized while the other is custom code. – Nikolai Ruhe Jul 12 '10 at 9:32
It certainly does go away if I make the property nonatomic. Interesting. I hadn't even thought about the synchronization issue. – e.James Jul 12 '10 at 9:35
I visited this topic to find a solution to that exact problem. I don't really want to write a getter and a setter by myself. Oh well… – Randy Marsh Aug 13 '11 at 16:27
feedback

3 Answers

up vote 99 down vote accepted

I had the same problem and after doing a bit of research, here is my conclusion about this issue:

The compiler warns you about a @property that you declared as atomic (i.e. by omitting the nonatomic keyword), yet you provide an incomplete implementation of how to synchronize access to that property.

To make that warning disappear:

If you declare a @property to be atomic then do one of the following:

  • use @dynamic or;
  • use @synthesize and keep the synthesized setter and getter or;
  • provide a manual implementation of both the setter and the getter (without using one of the above directives).

If you declare the @property with (nonatomic) then you can mix manual and synthesized implementations of getters and setters.

link|improve this answer
I am sorry for taking so long to mark this as accepted. Turned out to be 100% correct and very helpful. – e.James May 23 '11 at 17:58
np, thanks for accepting it! :) – octy Jun 1 '11 at 13:25
Thank you so much! – Randy Marsh Aug 13 '11 at 16:28
feedback

This question, among the other top hits you get from searching for "objective C custom property", are not updated with information about "setter =" or "getter =".

So, to supply more information on this question:

You can supply the @property call with your own method by writing

    @property(setter = MySetterMethod:, getter = MyGetterMethod)

Notice the colon for the supplied setter method.

Reference Apple documentation

link|improve this answer
+1 Thank you for adding this excellent information :) – e.James Dec 20 '11 at 17:49
feedback

You need to implement the getter also. Example:

// Interface:

@property (retain) NSObject * someProperty;

// Implementation:

- (void)setSomeProperty:(NSObject *)newValue
{
    @synchronized (self)
    {
        // ...
    }
}

- (NSObject *)someProperty
{
    NSObject *ret = nil;

    @synchronized (self)
    {
        ret = [[someProperty retain] autorelease];
    }

    return ret;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.