2016-11-29 17:48:07 +08:00
|
|
|
|
//
|
|
|
|
|
// ConstantDef.h
|
|
|
|
|
// jmessage
|
|
|
|
|
//
|
2016-12-06 13:56:27 +08:00
|
|
|
|
// Created by ljg on 16/1/19.
|
2016-11-29 17:48:07 +08:00
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef ConstantDef_h
|
|
|
|
|
#define ConstantDef_h
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* ConstantDef_h */
|
|
|
|
|
|
|
|
|
|
#define WEAK_SELF(weakSelf) __weak __typeof(&*self)weakSelf = self;
|
|
|
|
|
|
|
|
|
|
static NSString *const JPushConfig_Appkey = @"Appkey";
|
|
|
|
|
static NSString *const JPushConfig_Channel = @"Channel";
|
|
|
|
|
static NSString *const JPushConfig_IsProduction = @"IsProduction";
|
|
|
|
|
static NSString *const JPushConfig_IsIDFA = @"IsIDFA";
|
|
|
|
|
static NSString *const JPushConfig_FileName = @"PushConfig";
|
|
|
|
|
|
2016-12-06 13:56:27 +08:00
|
|
|
|
static NSString *const JPushDocumentEvent_ReceiveNotification = @"receiveNotification";
|
|
|
|
|
static NSString *const JPushDocumentEvent_OpenNotification = @"openNotification";
|
|
|
|
|
static NSString *const JPushDocumentEvent_BackgroundNotification = @"backgroundNotification";
|
|
|
|
|
static NSString *const JPushDocumentEvent_SetTagsWithAlias = @"setTagsWithAlias";
|
|
|
|
|
static NSString *const JPushDocumentEvent_ReceiveMessage = @"receiveMessage";
|
|
|
|
|
static NSString *const JPushDocumentEvent_StartLocalNotification = @"startLocalNotification";
|
|
|
|
|
static NSString *const JPushDocumentEvent_ReceiveLocalNotification = @"receiveLocalNotification";
|
2016-11-29 17:48:07 +08:00
|
|
|
|
|
|
|
|
|
|