0
저는 Swift 3에서 iOS 10 용 앱을 사용하고 있습니다. 앱에서 통화를 시뮬레이트하기 위해 UNNotificationContent를 수행했지만 출시 후 약 5 초 후에 사라집니다. 나는 "부름"이 진행되는 동안 더 많은 시간을 지켜야한다. removeAllPendingNotificationRequests 메서드를 호출 할 때까지 로컬 알림을 유지하려고합니다. 할 수 있을까요?UNNotificationContent를 몇 초만 유지하십시오.
이 내 코드는 지금 :
let content = UNMutableNotificationContent()
content.body = "\(userName) is calling..."
content.sound = UNNotificationSound(named: "sound_call.wav")
content.badge = 1
let request = UNNotificationRequest(identifier: "notification", content: content, trigger: nil)
UNUserNotificationCenter.current().add(request)
감사합니다!