Commit 0dae3559 by Shaik Ghouse

Merge branch 'feature/development-rebase'

parents 70127d2a 24d2c29b
......@@ -12,6 +12,8 @@ class DetailedViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
print("Hello first line in detailedVC")
}
override func didReceiveMemoryWarning() {
......
......@@ -12,6 +12,7 @@ class HomeViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
print("Hello first line in homeviewcontroller")
}
override func didReceiveMemoryWarning() {
......
......@@ -9,27 +9,14 @@
import UIKit
class MenuViewController: UIViewController {
var menuList : [String]?
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
print("Hello first line in MenuVC")
menuList = ["Home", "Recent", "Settings", "Logout"]
}
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 prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}
......@@ -12,24 +12,10 @@ class RecentViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
print("Hello first line in Recent")
}
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 prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment