#iOS notification auth 썸네일형 리스트형 [iOS] LocalNotification ## LocalNotification 설정 iOS 10 버전 이상 부터 UNUserNotificationCenter를 사용할 수 있다.우선 아래와 같이 UserNotifications를 import 시켜야 사용이 가능 합니다. 1234import UserNotificationsimport UIKit class ViewController: UIViewController ,UNUserNotificationCenterDelegate{cs 사용은 아래 와 같이 iOS 10 이상일 경우는 UNUserNotificationCenter를 사용하고, 그렇지 않을 경우는 기존 사용 되던 UILocalNotification을 사용하면 됩니다. 12345678910111213141516171819202122232425262.. 더보기 이전 1 다음