集成步骤不说了,自己看文档吧:极光推送iOS文档
新建一个AppDelegate的category
.h实现:
#import "AppDelegate.h"
#import "JPUSHService.h"
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
#import <UserNotifications/UserNotifications.h> // iOS10注册APNs所需头文件
#endif
@interface AppDelegate (JPush) <JPUSHRegisterDelegate>
- (void)regisJPushWithOptions:(NSDictionary *)launchOptions;
@end