Skip to content

Commit

Permalink
Added files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
alauria33 committed Apr 2, 2016
1 parent 4ea6f35 commit 5f57dd4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions GrouPics/CreateNavController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
//
// CreateNavController.swift
// GrouPics
//
// Created by Andrew on 3/28/16.
// Copyright © 2016 Andrew. All rights reserved.
//

import UIKit

var createNavController: UINavigationController = UINavigationController()

class CreateNavController: UINavigationController {

override func viewDidLoad() {
super.viewDidLoad()
createNavController = self as UINavigationController
// Do any additional setup after loading the view.
}

override func viewWillAppear(animated: Bool) {
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}


/*
// MARK: - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/

}

0 comments on commit 5f57dd4

Please sign in to comment.