Mariam Shihanaeverythingtechtoday.hashnode.dev·Oct 28, 2024Guide to Customer Notification - 101Think of customer notifications like a digital conversation. When done right, they're the friendly tap on the shoulder that makes your customers smile. When done wrong? They're the annoying relative who keeps calling at dinner time. Here's a reality ...Customer Experience
Pawan Jainjainpawan21.hashnode.dev·Sep 24, 2022Send notifications like a pro with Novu 🚀In this article I will explain how Novu can make it easy for you to send notifications / messages through different channel using a single api. Problem Overview 🤔 Let's take an example of an e-commerce application like Amazon. As a developer if we h...11 likes·607 readsnotificationcenter
Redredlog.hashnode.dev·Mar 17, 2022[iOS] Notification Center 구현하기😁 노티피케이션 센터란? 노티피케이션 센터란, 등록된 관찰자에게 알려줄 수 있도록 하는 알림 메커니즘이다. KVO 나 delegate 가 1 대 1 통신을 하는 것에 가깝다면 노티피케이션 센터는 여러곳에서 온 정보를 한 곳에서 모아서 다시 여러 곳으로 뿌려주는 것에 가깝다. 그래서 많은 사람들이 방송국에 노티피케이션 센터를 비유한다. 💻 노티피케이션 센터 구현해보기 NotificationCenter 공식 문서 노티피케이션 센터라는 이미...86 readsiOS
Christine Changyoursswiftly.hashnode.dev·Mar 28, 2020Notification & Observer PatternThe notification/observer communication pattern is useful when you need parts of your code to respond to events triggered in separate areas of the app (e.g. in separate methods or even separate classes). A concrete example is using the notification p...26 readsSwift