aboutsummaryrefslogtreecommitdiffstats
path: root/iPhone/AppDelegate_iPhone.m
diff options
context:
space:
mode:
Diffstat (limited to 'iPhone/AppDelegate_iPhone.m')
-rw-r--r--iPhone/AppDelegate_iPhone.m5
1 files changed, 4 insertions, 1 deletions
diff --git a/iPhone/AppDelegate_iPhone.m b/iPhone/AppDelegate_iPhone.m
index 566b8cd..31a23e4 100644
--- a/iPhone/AppDelegate_iPhone.m
+++ b/iPhone/AppDelegate_iPhone.m
@@ -8,6 +8,7 @@
#import "AppDelegate_iPhone.h"
#import "RootViewController.h"
+#import "ChatViewController.h"
@implementation AppDelegate_iPhone
@@ -21,7 +22,9 @@
// Override point for customization after application launch.
RootViewController *rootVC = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil];
- [window setRootViewController:rootVC];
+ ChatViewController *chatVC = [[ChatViewController alloc] init];
+// [window setRootViewController:rootVC];
+ [window addSubview:chatVC.view];
[window makeKeyAndVisible];