// // Export.m // DesktopNotifications.Apple.Native // // Created by Luis von der Eltz on 05.02.21. // Copyright © 2021 Luis von der Eltz. All rights reserved. // #import __attribute__ ((visibility("default"))) void ShowNotification() { [NSBundle mainBundle]; NSUserNotificationCenter* notificationCenter = [NSUserNotificationCenter defaultUserNotificationCenter]; //notificationCenter.delegate = _notificationCenterDelegate; NSUserNotification* cocoaNotification = [NSUserNotification new]; cocoaNotification.identifier = @"efef"; cocoaNotification.title = @"Hello World"; cocoaNotification.informativeText = @"informative"; [notificationCenter deliverNotification:cocoaNotification]; }