Add dealloc

This commit is contained in:
Gregory John Casamento 2019-10-24 00:17:10 -04:00
parent 98830d3962
commit de73db605c

View file

@ -39,6 +39,12 @@
return self;
}
- (void) dealloc
{
RELEASE(_numberFormatter);
[super dealloc];
}
- (NSNumberFormatter *) numberFormatter
{
return _numberFormatter;