//
// JPushHelper.h
// Car
//
// Created by Javen on 2016/12/29.
// Copyright © 2016年 上海勾芒信息科技. All rights reserved.
//
#import <Foundation/Foundation.h>
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
#import <UserNotifications/UserNotifications.h> // 这里是iOS10需要用到的框架
#endif
@interface JPushHelper : NSObject
+ (void)JPUSHConfigWithOptions:(NSDictionary *)launchOptions;
/**
注册token
@param deviceToken deviceToken description
*/
+ (void)registerDeviceToken:(NSData *)deviceToken;
@end
-
Sandy authored8be817f7