19 lines
395 B
C
19 lines
395 B
C
|
|
//
|
||
|
|
// AppDelegate.h
|
||
|
|
// AppScaffold
|
||
|
|
//
|
||
|
|
// Created by 谢培艺 on 2020/3/14.
|
||
|
|
// Copyright © 2020 ko1o. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import <GTSDK/GeTuiSdk.h> // GetuiSdk头文件
|
||
|
|
|
||
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate, GeTuiSdkDelegate>
|
||
|
|
|
||
|
|
@property (strong, nonatomic) UIWindow * window;
|
||
|
|
@property (copy, nonatomic) NSData * deviceToken;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|