我想在视图控制器的生命结束时执行一些清理,即删除NSNotificationCenter通知。实现dealloc导致Swift编译器错误:
Cannot override 'dealloc' which has been marked unavailable
在Swift中对象生命结束时执行一些清理的首选方法是什么?
deinit { // perform the deinitialization }
A deinitializer is called immediately before a class instance is
deallocated. You write deinitializers with the deinit keyword,similar
to how intializers are written with the init keyword. Deinitializers
are only available on class types.Typically you don’t need to perform manual clean-up when your instances are deallocated. However,when you are working with your own resources,you might need to perform some additional clean-up yourself. For example,if you create a custom class to open a file and write some data to it,you might need to close the file before the class instance is deallocated.