JPushDefine.h 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // ConstantDef.h
  3. // jmessage
  4. //
  5. // Created by ljg on 16/1/19.
  6. //
  7. //
  8. #ifndef ConstantDef_h
  9. #define ConstantDef_h
  10. #endif /* ConstantDef_h */
  11. #define WEAK_SELF(weakSelf) __weak __typeof(&*self)weakSelf = self;
  12. static NSString *const JPushConfig_FileName = @"JPushConfig";
  13. static NSString *const JPushConfig_Appkey = @"Appkey";
  14. static NSString *const JPushConfig_Channel = @"Channel";
  15. static NSString *const JPushConfig_IsProduction = @"IsProduction";
  16. static NSString *const JPushConfig_IsIDFA = @"IsIDFA";
  17. static NSString *const JPushConfig_Delay = @"Delay";
  18. static NSString *const JPushDocumentEvent_ReceiveNotification = @"receiveNotification";
  19. static NSString *const JPushDocumentEvent_OpenNotification = @"openNotification";
  20. static NSString *const JPushDocumentEvent_BackgroundNotification = @"backgroundNotification";
  21. static NSString *const JPushDocumentEvent_SetTagsWithAlias = @"setTagsWithAlias";
  22. static NSString *const JPushDocumentEvent_ReceiveMessage = @"receiveMessage";
  23. static NSString *const JPushDocumentEvent_StartLocalNotification = @"startLocalNotification";
  24. static NSString *const JPushDocumentEvent_ReceiveLocalNotification = @"receiveLocalNotification";