GeTuiExtSdk.h 631 B

1234567891011121314151617181920212223
  1. //
  2. // GeTuiExtSdk.h
  3. // GtExtensionSdk
  4. //
  5. // Created by gexin on 16/9/14.
  6. // Copyright © 2016年 getui. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UserNotifications/UserNotifications.h>
  10. @interface GeTuiExtSdk : NSObject
  11. /**
  12. * 统计APNs到达情况
  13. */
  14. + (void)handelNotificationServiceRequest:(UNNotificationRequest *)request withComplete:(void (^)(void))completeBlock;
  15. /**
  16. * 统计APNs到达情况和多媒体推送支持
  17. */
  18. + (void)handelNotificationServiceRequest:(UNNotificationRequest *)request withAttachmentsComplete:(void (^)(NSArray *attachments, NSArray *errors))completeBlock;
  19. @end