SAboutViewController.swift 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // SAboutViewController.swift
  3. // O2Platform
  4. //
  5. // Created by 刘振兴 on 2016/10/13.
  6. // Copyright © 2016年 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class SAboutViewController: UIViewController {
  10. @IBOutlet weak var aboutLogo: UIImageView!
  11. @IBOutlet weak var verLabel: UILabel!
  12. @IBOutlet weak var aboutLabel: UILabel!
  13. @IBOutlet weak var aboutContentLabel: UILabel!
  14. override func viewDidLoad() {
  15. super.viewDidLoad()
  16. self.verLabel.text = "版本号:\(O2.appVersionAndBuild!)"
  17. aboutLogo.image = OOCustomImageManager.default.loadImage(.launch_logo)
  18. }
  19. override func didReceiveMemoryWarning() {
  20. super.didReceiveMemoryWarning()
  21. // Dispose of any resources that can be recreated.
  22. }
  23. /*
  24. // MARK: - Navigation
  25. // In a storyboard-based application, you will often want to do a little preparation before navigation
  26. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  27. // Get the new view controller using segue.destinationViewController.
  28. // Pass the selected object to the new view controller.
  29. }
  30. */
  31. }