APP1 window
self.window = UIWindow(frame:UIScreen.mainScreen().bounds)
let rootVC : RootViewController = RootViewController()
let navi = UINavigationController(rootViewController:rootVC)
self.window!.rootViewController = navi
self.window!.makeKeyAndVisible()