• 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
properties implementation
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

properties implementation


  • Subject: properties implementation
  • From: "Optical Ali" <email@hidden>
  • Date: Tue, 22 Apr 2008 07:49:51 -0500

Hi,
Is there a way to know how the compiler synthesized a property?

For example,

property(copy) NSSttring *str;

AND
@synthesize str;


Will produce

-(NSString) str{
  return str;
}

OR

-(NSString) str{
  return [[str retain] autorelease];
}

?

These two can change the behavior of the program

str1 =aObject.str;
 aObject.str = str3;

Is str1 still valid?  The assignment will trigger a release of old value,
right?

I want to know the actual implementation of all different attributes  if
possible.

Thank you.
_______________________________________________

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: properties implementation
      • From: mmalc crawford <email@hidden>
    • Re: properties implementation
      • From: Michael Vannorsdel <email@hidden>
  • Prev by Date: Re: NSCollectionView and CoreData question
  • Next by Date: Re: properties implementation
  • Previous by thread: Re: Carriage returns and NSXMLParser
  • Next by thread: Re: properties implementation
  • Index(es):
    • Date
    • Thread