Is it reliable to use an unowned(unsafe) reference while the object in question is deinitializing?

Hi,
unowned delocate value from memory.
It's mean nobody has a reference to it, so it allow a deinit.

Hope it's help you