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