앱이 사용자에게 알림을 주는 방법으로 푸시알림이 있어요 대표적으로 카카오톡 메시지가 오면 위에서 나오는 작은 알림창 같은 거에요 살짝 복잡할지도 모르지만 알아두면 APN은 유용하게 쓰일거에요!! 우선은 간단한 로컬에서 푸시날리는 방법을 살펴볼께요!!! @IBAction func pushClick(_ sender: Any) { let push = UNMutableNotificationContent() push.title = "test Title" push.subtitle = "test subTitle" push.body = "test body" push.badge = 1 let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 3, repeats: fa..