본문 바로가기

학습 노트/iOS (2021)

(96)
143 ~ 144. Notification Settings and Notification Management Notification Settings Local notification과 Push Notification을 처리하기 위해서는 사용자의 명시적인 허가가 필요하다. 따라서 Notification의 구현중 권한 요청에 관련된 코드를 가장 먼저 구현한다. 사용자가 앱을 설치하고 최초로 실행하면 Notification의 권한을 묻는 경고창이 표시된다. 사용자가 수락하면 iOS가 관련 설정을 저장하고, 설정 앱을 통해 관리 메뉴를 제공한다. 해당 메뉴를 통해 권한을 수락한 이후에도 언제든지 설정을 변경할 수 있다. 따라서 사용자가 최초에 권한을 허용했다고 해서 항상 Notification을 처리할 수 있다고 가정하면 안 된다. 항상 현재 설정을 확인하고 필요한 작업을 실행해야 한다. 사용자의 설정을 거스르고 앱에..
142. Notification Content Extension Notification Content Extension Notification Content Extension은 Custoom Notification을 구현할 때 사용한다. Notification이 도착하면 화면상에 Banner가 표시되고, 이를 Pull down 하면 Full Notification Interface가 표시된다. Full Notification Interface는 두 가지 부분으로 구성되어있다. Header 앱 아이콘과 이름이 표시된다. 기본 인터페이스 iOS 13 : Attachment, Title, Body의 순서대로 표시된다. iOS 15 : Title, Body, Attachment의 순서로 표시된다. Notification Content Extension으로 UI를 구현하면 A..
140 ~ 141. JSON Payload & Silent Push Notification and Notification Service Extension
138 ~ 139. Remote Notification & Push Certificates, Provider and Client App Remote Notification & Push Certificates Remote Notification의 구현 방식은 이전의 Local Notification과 동일하다고 봐도 무방하다. 실제로 사용자에게 비춰지는 Remote Notification과 Local Notification은 시각적으로도, 기능적으로도 동일하기 때문에 이를 구별하기 힘들다. 하지만 Remote Notification은 원격서버에서 전송하는 Notification이기때문에 차이점도 존재한다. Remote Notification을 실제로 전달하는 서버는 애플의 서버로 APNs라고 부른다. 이 APNs로 Notificatio을 전달하는 서버를 Provider라고 부르고 이는 직접 구현하거나 클라우드 서비스를 사용해야한다. 강의에..
137. Actionable Notification Actionable Notification 사용자는 Notification이 도착했을 때 몇 가지 옵션 중 하나를 선택할 수 있다. Normal Dismiss Action 무시해서 자동으로 사라지게 하거나 미리보기 상태에서 Swipe로 직접 사라지게 할 수 있다. Custom Dismiss Action Notification Center의 닫기 버튼을 눌러 사라지게 할 수 있다. Default Action Banner를 터치해 앱을 실행할 수 있다. Custom Action 직접 Custom Action을 추가할 수 있고, Banner 아래쪽에 버튼 형태로 추가된다. 이를 선택하면 연관된 코드가 Background에서 실행된다. Default Action과는 달리 앱이 Forground에서 실행되지는 않..
135 ~ 136. Local Notification, Custom Notification Sound & Attachment Local Notification 캘린더 앱에는 알림을 설정할 수 있는 기능이 존재한다. 알림을 받고 싶은 때를 선택하면 해당 시점에 알림을 표시한다. 해당 기능은 Local Notification의 대표적인 기능이다. iOS는 User Notification Center를 통해 Local Notification을 관리한다. 앱에서 Notification을 예약하면 해당 시점에 Notification을 전달한다. 앱이 실행 중이라면 앱으로 전달하고, 실행 중이 아니라면 직접 배너를 통해 표시한다. Notification의 구현은 크게 세 단계로 나눌 수 있다. Local Notification 권한 요청하기 사용자가 직접 허용한 경우에만 Local Notification을 예약하고 받을 수 있다. Not..
133 ~ 134. Notification Center and Notification Notification Overview Notification은 이벤트가 발생했음을 알리는 도구이다. 예를 들어 문자가 오면 알림음과 함께 알림이 표시된다. 사용자는 Notification의 동작이나 종류에 대해 생각할 필요가 없지만 개발자는 이들의 차이와 구현 방식의 차이를 정확히 알아야 한다. iOS 앱 개발자 사용할 수 있는 Notification은 3가지이다. Notification 아무런 접두어가 없는 Notification이다. 하나의 프로그램 내에서 객체들이 주고받는 메시지를 의미한다. 특정 이벤트에 대한 Observer를 등록하고, 이벤트가 Broadcasting 되면 원하는 코드를 실행하는 방식으로 구현한다. Local Notification 시계 알람처럼 지정된 시간에 사용자에게 알림을..
130 ~ 132. Custom Presentation, Custom Transition and Interactive Transition Custom Presentation Custom Presentation을 구현하기 위해서 Presentation에 대해 조금 자세히 알 필요가 있다. UI를 구성하는 기능은 View Controller가 담당한다. View Controller에 화면을 표시하는 것은 Presentation Controller가 담당한다. 이전까지 언급한 Builtin Presentation을 사용하면 Presentation Controller가 자동으로 생성된다. 해당 Controller는 Presented View Controller가 Dismiss 되기 전까지 View Controller를 관리한다. Presentation Controller는 Presented View Controller를 표시할 Frame을 설정하..
128 ~ 129. View Transition and View Controller Presentation View Transition // // ViewTransitionViewController.swift // Transition Practice // // Created by Martin.Q on 2021/11/16. // import UIKit class ViewTransitionViewController: UIViewController { @IBOutlet weak var containerView: UIView! @IBOutlet weak var pinkView: UIView! @IBOutlet weak var greenView: UIView! @IBAction func startTransition(_ sender: Any) { } override func viewDidLoad() { super.vie..
124 ~ 127. UIVIew Animation, Spring Animation & Keyframe Animation, Property Animator and Motion Effect UIView Animation UIView 클래스는 Animation 구현에 필요한 API를 Type Method 방식으로 제공한다. 해당 메서드를 사용해서 비교적 간단하게 고품질의 Animation을 구현할 수 있다. 다룰 Animation들은 Block 기반의 API로, Animation Block에서 원하는 최종 값을 설정하면 UIKit이 현재 값에서 최종 값으로 전환되는 Animation을 실행한다. 다음의 항목들이 UIKit이 Animation을 지원하는 항목들이다. frame bounds center transform alpha backgroundColor // // SimpleUIViewAnimationViewController.swift // Animation Practice // // C..