35 lines
1.2 KiB
Objective-C
35 lines
1.2 KiB
Objective-C
// ----------------------------------------------------------------------
|
|
// Copyright (C) 2021 即时通讯网(52im.net) & Jack Jiang.
|
|
// The MobileIMSDK_TCP (MobileIMSDK v6.x TCP版) Project.
|
|
// All rights reserved.
|
|
//
|
|
// > Github地址: https://github.com/JackJiang2011/MobileIMSDK
|
|
// > 文档地址: http://www.52im.net/forum-89-1.html
|
|
// > 技术社区: http://www.52im.net/
|
|
// > 技术交流群: 215477170 (http://www.52im.net/topic-qqgroup.html)
|
|
// > 作者公众号: “即时通讯技术圈】”,欢迎关注!
|
|
// > 联系作者: http://www.52im.net/thread-2792-1-1.html
|
|
//
|
|
// "即时通讯网(52im.net) - 即时通讯开发者社区!" 推荐开源工程。
|
|
// ----------------------------------------------------------------------
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#define CurAppDelegate ((AppDelegate*)[[UIApplication sharedApplication] delegate])
|
|
|
|
@class MainViewController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) MainViewController *viewController;
|
|
|
|
-(void)switchToMainViewController;
|
|
|
|
- (UIView *) getMainView;
|
|
- (MainViewController *) getMainViewController;
|
|
- (void) refreshConnecteStatus;
|
|
|
|
@end
|
|
|