I\'m creating a ViewController object an pushing it to a navigation controller. When the object is being popped from the stack - it is not being release and Deinit is not be
add some line code of in deinit. If You put breakpoint at Empty deinit ,compiler will not stop you there put this:
deinit { print("any thing") }
It will work ;)