Я бы хотел настроить локальное уведомление в своем приложении для iOS, чтобы, когда пользователь проводит пальцем влево, а затем нажимает на Вид, сообщение в уведомлении отображается в отображаемом представлении.Я хочу сделать это, потому что, если сообщение длинное, оно обрезается, поэтому в уведомлении отображается только первая его часть.
Вот мой код.Это работает столько, сколько я знаю, как это сделать.Когда пользователь нажимает кнопку «Просмотр», он отображает только пустой вид.
let content = UNMutableNotificationContent()
content.categoryIdentifier = "HELLO"
content.title = "Hello World!"
content.body = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."
if #available(iOS 12.0, *) {
content.summaryArgument = "summaryArgument"
content.summaryArgumentCount = 5
} else {
// Fallback on earlier versions
}
var dateComponents = DateComponents()
dateComponents.second = 0
let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: true)
// Create the request
let uuidString = UUID().uuidString
let request = UNNotificationRequest(identifier: uuidString,
content: content, trigger: trigger)
// Schedule the request with the system.
center.add(request) { (error) in
if error != nil {
print("error=", error?.localizedDescription as Any)
}
}