Are the tools telling about it exclusively on the simulator, or are you reporting this on the device itself? If you donโt get it on the device, then this is a simulator - and this is known to happen (this is not an exact match).
Also, down in dealloc, would it be [self.tableHeaderView release] ? You must be compatible with your use.
To avoid confusion, in your .h you declare this:
NS/UI/??xxxxxx *_MyObjectName;
Then a property like this:
@property .... NS/UI/??xxxxxx *MyObjectName; //no underscore
Then synthesize getters / setters as follows:
@synthesize MyObjectName=_MyObjectName;
Finally, access the object in the entire program using [self.MyObjectName ...];
inked
source share