// // MyViewController.swift // BingHaoBang // // Created by zhangjidong on 16/3/31. // Copyright © 2016年 Zjdboy. All rights reserved. // import UIKit class MyViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() self.title = "我的" self.view.backgroundColor = UIColor.whiteColor() // Do any additional setup after loading the view. } 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. } */ }