SAboutViewController.swift 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. import EZSwiftExtensions
  10. class SAboutViewController: UIViewController {
  11. @IBOutlet weak var aboutLogo: UIImageView!
  12. @IBOutlet weak var verLabel: UILabel!
  13. @IBOutlet weak var aboutLabel: UILabel!
  14. @IBOutlet weak var aboutContentLabel: UILabel!
  15. override func viewDidLoad() {
  16. super.viewDidLoad()
  17. self.verLabel.text = "版本号:\(ez.appVersionAndBuild!)"
  18. aboutLogo.image = OOCustomImageManager.default.loadImage(.launch_logo)
  19. }
  20. override func didReceiveMemoryWarning() {
  21. super.didReceiveMemoryWarning()
  22. // Dispose of any resources that can be recreated.
  23. }
  24. /*
  25. // MARK: - Navigation
  26. // In a storyboard-based application, you will often want to do a little preparation before navigation
  27. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  28. // Get the new view controller using segue.destinationViewController.
  29. // Pass the selected object to the new view controller.
  30. }
  31. */
  32. }