GiGaMaskTime/GIGA/AppDelegate+GiGaConfig.h

41 lines
568 B
Objective-C

//
// AppDelegate+GiGaConfig.h
// GIGA
//
// Created by lianxiang on 2018/8/13.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import "AppDelegate.h"
#import <UserNotifications/UserNotifications.h>
@interface AppDelegate (GiGaConfig)<UNUserNotificationCenterDelegate>
/**
v1.0 后使用
*/
- (void)setupTabBarController;
/**
服务器环境
*/
- (void)configEnvironment;
/**
设置根视图 v1.0
*/
- (void)setupRootVC;
/**
设置启动广告
*/
-(void)creatAdView;
/**
注册本地通知
*/
-(void)registLocalNotification;
@end