When i implement dealloc method i used to write:
[preopertyX release];
Today i found this code:
[self.propertyX release];
I'm not sure that this method is completely correct. What do you think about ? (we can take as assumption that propertyX is a retained and synthesized property).