IOS — кнопка действия не отображается в локальном push-уведомлении
Ниже приведен код в target-c для добавления кнопки действия во время запуска приложения.
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
UNNotificationAction *ActionBtn1 = [UNNotificationAction actionWithIdentifier:@"Btn1" title:@"Open App" options:UNNotificationActionOptionNone];
UNNotificationCategory *category = [UNNotificationCategory categoryWithIdentifier:@"richNotificationCategory" actions:@[ActionBtn1] intentIdentifiers:@[] options:UNNotificationCategoryOptionNone];
NSSet *categories = [NSSet setWithObject:category];
center setNotificationCategories:categories];
Также установка categoryIdentifier при планировании уведомления -
notificationContent.categoryIdentifier = @"richNotificationCategory";
кнопка все еще не видна. любой намек, пожалуйста?