VoiceMac/Classes/VoiceMob/MGMController.m

22 lines
614 B
Mathematica
Raw Normal View History

//
// MGMController.m
// VoiceMob
//
// Created by Mr. Gecko on 9/24/10.
// Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
//
#import "MGMController.h"
2010-09-25 07:34:32 -05:00
#import "MGMAccountSetup.h"
#import "MGMVMAddons.h"
@implementation MGMController
2010-09-25 07:34:32 -05:00
- (void)awakeFromNib {
NSLog(@"Device is %@", ([[UIDevice currentDevice] isPad] ? @"iPad" : @"iPhone/iPod"));
MGMAccountSetup *accountSetup = [MGMAccountSetup new];
[accountSetup displayStep];
[[self view] addSubview:[accountSetup view]];
[mainWindow addSubview:[self view]];
[mainWindow makeKeyAndVisible];
}
@end