// // AppDelegate.h // 速达驾考 // // Created by 张嵘 on 2021/7/23. // #import #import "RQNavigationControllerStack.h" #import "RQViewModelServicesImpl.h" #define RQ_APPDELEGATE [AppDelegate sharedDelegate] @interface AppDelegate : UIResponder /// 窗口 @property (strong, nonatomic) UIWindow *window; /// APP管理的导航栏的堆栈 @property (nonatomic, readonly, strong) RQNavigationControllerStack *navigationControllerStack; /// APP的服务层 @property (nonatomic, readonly, strong) RQViewModelServicesImpl *services; /// 获取AppDelegate + (AppDelegate *)sharedDelegate; /// 是否已经弹出键盘 主要用于微信朋友圈的判断 @property (nonatomic, readwrite, assign , getter = isShowKeyboard) BOOL showKeyboard; @property (nonatomic, readwrite, assign) BOOL allowOrentitaionRotation; @end