Cannot overrIDe 'dealloc' which has been marked unavailable
在Swift中对象生命结束时执行一些清理的首选方法是什么?
deinit { // perform the deinitialization}
从Swift Documentation:
总结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.
以上是内存溢出为你收集整理的dealloc在Swift中全部内容,希望文章能够帮你解决dealloc在Swift中所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)