Commit af547d77 by Shaik Ghouse

Final Changes in HomeScreen and ready for commit

Final changes in
parent e6fb62ca
......@@ -13,6 +13,7 @@ class HomeViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
print("Hello first line in homeviewcontroller")
print("Lets start the project")
}
override func didReceiveMemoryWarning() {
......
......@@ -9,10 +9,16 @@
import UIKit
class MenuViewController: UIViewController {
var menuList : [String]?
override func viewDidLoad() {
super.viewDidLoad()
print("Hello first line in MenuVC")
menuList = ["Home", "Recent", "Settings", "Logout"]
if let menuArray = menuList {
for menu in menuArray {
print(menu)
}
}
}
override func didReceiveMemoryWarning() {
......
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