Blame view

HDFwear/Home/MettReferenceVC.swift 1.34 KB
f2cf74c7   yangbin   1.0.20(4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  //
  //  MettReferenceVC.swift
  //  Twear
  //
  //  Created by yangbin on 2022/3/1.
  //
  
  import UIKit
  
  class MettReferenceVC: UIViewController {
      @IBOutlet weak var locLabel1: UILabel!
      @IBOutlet weak var locLabel2: UILabel!
      @IBOutlet weak var locLabel3: UILabel!
      @IBOutlet weak var locLabel4: UILabel!
      
      override func viewWillAppear(_ animated: Bool) {
          super.viewWillAppear(animated)
          self.navigationController?.setNavigationBarHidden(false, animated: true)
      }
      override func viewDidLoad() {
          super.viewDidLoad()
          title = LocString("梅脱")
          locLabel1.text = LocString("推荐梅脱")
          locLabel2.text = LocString("推荐一周梅脱为:600-1000MET-min")
          locLabel3.text = LocString("当活动强度达到中高等。且持续活动10分钟以上,则认为该次活动是有效活动,对人体健康有益。")
          locLabel4.text = LocString("什么是梅脱")
          // Do any additional setup after loading the view.
      }
      
  
      /*
      // MARK: - Navigation
  
      // In a storyboard-based application, you will often want to do a little preparation before navigation
      override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
          // Get the new view controller using segue.destination.
          // Pass the selected object to the new view controller.
      }
      */
  
  }