[Swift] 저장소 이해하기 : NotificationCenter, UserDefaults, AppGroup(FileManager)
·
Swift/이해하기
해당 글에서는 Swift에서 데이터를 저장하고 읽을 수 있는 공간을 위해 NotificationCenter, UserDefalts, AppGroup(FileManager)에 대해서 이해를 돕기 위한 목적으로 작성하였습니다 1) NotificationCenter 💡 NotificationCenter 이란? - 앱 내에서 발생한 이벤트를 다른 객체에게 알리기 위해 사용됩니다. 이벤트를 post 하면 해당 이벤트를 구독하고 있는 객체들이 이벤트를 받아 처리할 수 있습니다. - NotificationCenter는 앱이 실행되는 동안 메모리에 상주하므로 앱이 종료되면 저장되지 않습니다. 1. 주요 메서드 메서드 기능 NotificationCenter.default.addObserver(_:selector:name..