addObserver
-
[Swift] addObserver를 한 뒤 remove를 해주어야 하는가?앱등이에게 살충제를 뿌린다./Swift 2022. 9. 18. 02:46
https://developer.apple.com/documentation/foundation/notificationcenter/1413994-removeobserver 위 문서에 따르면 iOS9.0 이후에는 observer를 unregister하지 않아도 된다고 한다. If your app targets iOS 9.0 and later or macOS 10.11 and later, and you used [addObserver(_:selector:name:object:)], you do not need to unregister the observer. If you forget or are unable to remove the observer, the system cleans up the next tim..