It’s been some time since I created a new project in Xcode.
Today I created a new “tabbed Application” and I noticed that the firstViewController and secondViewController created by Xcode don’t have a dealloc method.
Why is that? do I have to create it myself?
Yes, the
-deallocalways needs to be implemented by you. It doesn’t exist by default regardless of template type.