9 lines
230 B
Objective-C
9 lines
230 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <UserNotifications/UNUserNotificationCenter.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate, UNUserNotificationCenterDelegate>
|
|
|
|
@property (nonatomic, strong) UIWindow *window;
|
|
|
|
@end
|