MyViewController.swift 957 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // MyViewController.swift
  3. // BingHaoBang
  4. //
  5. // Created by zhangjidong on 16/3/31.
  6. // Copyright © 2016年 Zjdboy. All rights reserved.
  7. //
  8. import UIKit
  9. class MyViewController: UIViewController {
  10. override func viewDidLoad() {
  11. super.viewDidLoad()
  12. self.title = "我的"
  13. self.view.backgroundColor = UIColor.whiteColor()
  14. // Do any additional setup after loading the view.
  15. }
  16. override func didReceiveMemoryWarning() {
  17. super.didReceiveMemoryWarning()
  18. // Dispose of any resources that can be recreated.
  19. }
  20. /*
  21. // MARK: - Navigation
  22. // In a storyboard-based application, you will often want to do a little preparation before navigation
  23. override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
  24. // Get the new view controller using segue.destinationViewController.
  25. // Pass the selected object to the new view controller.
  26. }
  27. */
  28. }