If I have an object like
AType *object = nil;
and I set nil to the object property like
object.property = nil;
Is it completly fine to do that, or could I run in some problem with some particular case?
If I have an object like
AType *object = nil;
and I set nil to the object property like
object.property = nil;
Is it completly fine to do that, or could I run in some problem with some particular case?