mirror of
https://github.com/wu736139669/Ash_AWord.git
synced 2026-08-05 05:55:19 +00:00
27 lines
527 B
Objective-C
27 lines
527 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Ash_AWord
|
|
//
|
|
// Created by xmfish on 15/3/26.
|
|
// Copyright (c) 2015年 ash. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class MainViewController;
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate,UITabBarControllerDelegate>
|
|
{
|
|
MainViewController* _mainViewController;
|
|
|
|
}
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) MainViewController* mainViewController;
|
|
|
|
|
|
/**
|
|
* 当前可视viewController
|
|
*/
|
|
+ (UIViewController *)visibleViewController;
|
|
|
|
@end
|
|
|