How to create project without story board in xcode 6 (swift)?
Can any one has practiced creating project in xcode6 (swift) without storyboard. I am able to implement func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool { // Override point for customization after application launch. self.window = UIWindow(frame: UIScreen.mainScreen().bounds) self.window!.backgroundColor = UIColor.whiteColor() self.window!.makeKeyAndVisible() var viewController: ViewController? = ViewController(nibName: "ViewController", bundle: nil) self.navigationController = UINavigationController(rootViewController: