JPushNotificationExtensionService.h 687 B

12345678910111213141516171819202122232425
  1. /*
  2. * | | | | \ \ / / | | | | / _______|
  3. * | |____| | \ \/ / | |____| | / /
  4. * | |____| | \ / | |____| | | | _____
  5. * | | | | / \ | | | | | | |____ |
  6. * | | | | / /\ \ | | | | \ \______| |
  7. * | | | | /_/ \_\ | | | | \_________|
  8. *
  9. * Copyright (c) 2017 Shenzhen HXHG. All rights reserved.
  10. */
  11. #import <Foundation/Foundation.h>
  12. #define JPUSH_EXTENSION_VERSION_NUMBER 1.0.0
  13. @class UNNotificationRequest;
  14. @interface JPushNotificationExtensionService : NSObject
  15. + (void)jpushSetAppkey:(NSString *)appkey;
  16. + (void)jpushReceiveNotificationRequest:(UNNotificationRequest *)request with:(void (^)(void))completion;
  17. @end