mirror of
https://github.com/grishka/NearDrop.git
synced 2026-04-03 01:36:15 +02:00
21 lines
407 B
Objective-C
21 lines
407 B
Objective-C
//
|
|
// NDNotificationCenterHackery.h
|
|
// NearDrop
|
|
//
|
|
// Created by Grishka on 10.04.2023.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NDNotificationCenterHackery : NSObject
|
|
|
|
+ (UNNotificationCategory*)hackedNotificationCategory;
|
|
+ (void)removeDefaultAction:(UNMutableNotificationContent*) content;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|