24 lines
497 B
Objective-C
24 lines
497 B
Objective-C
//
|
|
// AppDelegate+ThirdParty.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/8/16.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "WXApi.h"
|
|
#import "JPUSHService.h"
|
|
// iOS10注册APNs所需头文件
|
|
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
|
|
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
#endif
|
|
|
|
@interface AppDelegate (ThirdParty)<JPUSHRegisterDelegate,WXApiDelegate>
|
|
|
|
-(void)configThridPartyWithOptions:(NSDictionary *)launchOptions;
|
|
|
|
@end
|