• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Cocoa says not KVC compliant
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Cocoa says not KVC compliant


  • Subject: Re: Cocoa says not KVC compliant
  • From: "Alex Wait" <email@hidden>
  • Date: Wed, 2 Jul 2008 12:26:13 -0700

if you have the @property statement, and you use the I think @synthesize
(could be wrong about that) you don't need to write the functions yourself.
Try taking out the @property statement.

On Wed, Jul 2, 2008 at 10:13 AM, Milen Dzhumerov <email@hidden> wrote:

> Hi all,
>
> I've run into a something I find strange. I've got a property declared as:
>
> @property(readwrite, assign, nonatomic) CGImageRef image;
>
> And it's implemented as:
>
> -(CGImageRef)image
> {
>        return mImage;
> }
>
> -(void)setImage:(CGImageRef)newImage
> {
>        if(mImage != newImage)
>        {
>                CGImageRelease(mImage);
>                CGImageRetain(newImage);
>                mImage = newImage;
>        }
> }
>
> When I try to set it using KVC (e.g. [obj setValue:[NSValue
> valueWithPointer:image] forKeyPath:@"image"]), it says [<*ClassName*
> 0x133050> setValue:forUndefinedKey:]: this class is not key value
> coding-compliant for the key image.'
>
> Any hints on why the class is not KVC-compliant? I've read the docs and it
> seems to satisfy the bullet points listed (moreover it's even declared as
> @property so the naming of the setters / getters should be alright).
>
> Thanks,
> M
> _______________________________________________
>
> Cocoa-dev mailing list (email@hidden)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
>
> This email sent to email@hidden
>



--
If you can't be kind, at least have the decency to be vague.
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Cocoa says not KVC compliant
      • From: mmalc crawford <email@hidden>
References: 
 >Cocoa says not KVC compliant (From: Milen Dzhumerov <email@hidden>)

  • Prev by Date: Re: A question of style: Returning 'pairs'
  • Next by Date: Re: A question of style: Returning 'pairs'
  • Previous by thread: Cocoa says not KVC compliant
  • Next by thread: Re: Cocoa says not KVC compliant
  • Index(es):
    • Date
    • Thread