καλημερα, εχει δουλεψει καπιος push notifications στην swift?
θελω κωδικα που να περνει τα δεδομενα του notification οταν ηφαρμογη ειναι τελειως κλειστη και ανοιγει απο πατημα στο notification center
βρηκα αυτο απο την αππλε αλλα δεν μπορω να το μετατρεψω σε swift
- (BOOL)application:(UIApplication *)app didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { UILocalNotification *localNotif = [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey]; if (localNotif) { NSString *itemName = [localNotif.userInfo objectForKey:ToDoItemKey]; [viewController displayItem:itemName]; // custom method app.applicationIconBadgeNumber = localNotif.applicationIconBadgeNumber-1; } [window addSubview:viewController.view]; [window makeKeyAndVisible]; return YES; }