The Objective-C documentation explains this. The details of what actually happens are implementation specific.
copy
Specifies that a copy of the object should be used for
assignment. The previous value is sent a release message. The copy is
made by invoking the copy method. This attribute is valid only for
object types, which must implement the NSCopying protocol.
assign
Specifies that the setter uses simple assignment. This attribute is
the default. You use this attribute for scalar types such as NSInteger
and CGRect.
retain
Specifies that retain should be invoked on the
object upon assignment. The previous value is sent a release message.
...
nonatomic
Specifies that accessors are nonatomic. By default, accessors are atomic.
...
[_internal lock]; // lock using an object-level lock
id result = [[value retain] autorelease];
[_internal unlock];
return result;