// // NotificationViewController.m // richNotifications // // Created by David Idmansour on 22/06/2018. // #import "NotificationViewController.h" #import #import @interface NotificationViewController () @property IBOutlet UILabel *label; @end @implementation NotificationViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any required interface initialization here. } - (void)didReceiveNotification:(UNNotification *)notification { self.label.text = notification.request.content.body; } @end