I have a text field and i manually (by code) set a font and text color for it
so when i release the textField in the dealloc i have:
should i have a
Code:
textFiled.textColor
textField.font
so when i release the textField in the dealloc i have:
Code:
[textField release];
textField = nil;
should i have a
Code:
[textField.font release];
[textField.textColor release];