Files
ipushto/Classes/OrientationAppDelegate.m
Norbert Schmidt 025e53504d First commit
2017-09-04 11:40:05 +02:00

33 lines
676 B
Objective-C
Executable File

#import "OrientationAppDelegate.h"
#import "OrientationViewController.h"
#import "MessierZoekformulierViewController.h"
#import "NGCZoekformulierViewController.h"
@implementation OrientationAppDelegate
@synthesize window;
@synthesize viewController;
@synthesize tabBarController;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Override point for customization after app launch
[window addSubview:viewController.view];
[window addSubview:tabBarController.view];
[window makeKeyAndVisible];
self.window.rootViewController = self.tabBarController;
[[UIApplication sharedApplication] setStatusBarHidden:YES ];
}
@end