|
//
// AppDelegate.h
// ThePaperHD
//
// Created by scar1900 on 14/12/31.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TPWindow.h"
#import "welcomeAndAdController.h"
#import <AdsameCubeMaxSDK/AdsameCubeMaxSDK.h>
#import <ShareSDK/ShareSDK.h>
#import "WXApi.h"
#import "WeiboSDK.h"
#import <TencentOpenAPI/TencentOAuth.h>
#import <TencentOpenAPI/QQApiInterface.h>
#import "TalkingDataAppCpa.h"
#import "shareUtil.h"
#import "YRSideViewController.h"
#import "MLNavigationController.h"
#import "TPMainPageViewController.h"
@interface AppDelegate : UIResponder <UIApplicationDelegate,RemoteDelegate,AdsameCubeMaxDelegate>
@property (strong, nonatomic) TPWindow *window;
@property (strong,nonatomic) YRSideViewController *sideViewController;
@property(nonatomic, strong)welcomeAndAdController *welcomeController;
@property(nonatomic, strong)TPMainPageViewController *mainVC;
@property (strong, nonatomic)NSDate *enterBackGroundDate;
@property(nonatomic, strong)MLNavigationController *navigationVC;
@property (copy) void (^backgroundSessionCompletionHandler)();
@property (nonatomic, unsafe_unretained) UIBackgroundTaskIdentifier backgroundTaskIdentifier;
- (void)registUmentRemotePush;
- (void)unRegistUmentRemotePush;
//- (void)invalidBackGroundTask;
@end
|