123456789101112131415161718192021222324252627282930313233343536 |
- //
- // 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.
- }
- */
- }
|