AppDelegate+PushNotification.h 448 B

123456789101112131415161718192021222324
  1. //
  2. // AppDelegate+PushNotification.h
  3. // Asteria
  4. //
  5. // Created by xingyu on 2024/7/16.
  6. //
  7. #import "AppDelegate.h"
  8. #import <OneSignal/OneSignal.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AppDelegate (PushNotification)<UNUserNotificationCenterDelegate>
  11. //初始化OneSignal SDK
  12. - (void)initPushNotificationConfig:(NSDictionary *)launchOptions;
  13. //处理推送消息
  14. //- (void)handlePushAction:(NSDictionary *)payLoad;
  15. @end
  16. NS_ASSUME_NONNULL_END