// // AppDelegate.h // FMC Planner 2 // // Created by Kilian Hofmann on 19.03.16. // Copyright © 2016 Kilian Hofmann. All rights reserved. // #import "DropboxV2ObjC.h" #import "NavDataParser.h" #import "ViewController.h" #import "ViewControllerServiceMenu.h" #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; #pragma mark - Refrence to other views in app @property (strong, nonatomic) ViewController *main; #pragma mark - Refrence to authentication web view in order to dismiss it @property (strong, nonatomic) UIViewController *smWebView; #pragma mark - Refrence to main view for Alerts and shit. @property (strong, nonatomic) UIViewController *smMenu; @end