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 (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to