Blame view

Twear/Setting/UnbindRemindVC.swift 2.36 KB
582f536d   yangbin   common:2022.1.28
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  //
  //  UnbindRemindVC.swift
  //  Twear
  //
  //  Created by yangbin on 2022/1/19.
  //
  
  import UIKit
  import YYText
  
  class UnbindRemindVC: UIViewController {
      @IBOutlet weak var imageView: UIImageView!
      @IBOutlet weak var detailLabel: YYLabel!
      
      
      
      override func viewWillAppear(_ animated: Bool) {
          super.viewWillAppear(animated)
          let navController = navigationController as? ZCNavigationController
          navController?.enableScreenEdgePanGestureRecognizer(false)
      }
      override func viewWillDisappear(_ animated: Bool) {
          super.viewWillDisappear(animated)
          let navController = navigationController as? ZCNavigationController
          navController?.enableScreenEdgePanGestureRecognizer(true)
      }
      
      
      
      override func navigationShouldPop() -> Bool {
          navigationController?.popToRootViewController(animated: true)
          return false
     
      }
  
      override func viewDidLoad() {
          super.viewDidLoad()
          if AppSettings.shared.language == .Chinese {
              imageView.image = UIImage(named: "unbind_remind_cn")
          } else {
              imageView.image = UIImage(named: "unbind_remind_en")
          }
          
          let text = NSMutableAttributedString(string: LocString("系统设置>蓝牙>点击绑定的蓝牙右侧的"), attributes: [.font: RegularFont(12)])
          let text2 = NSMutableAttributedString(string: LocString(">忽略此设备"), attributes: [.font: RegularFont(12)])
          let image = UIImage(named: "bluetooth_remind")
          let attachment = NSMutableAttributedString.yy_attachmentString(withContent: image, contentMode: .center, attachmentSize: image!.size, alignTo: RegularFont(12), alignment: .center)
          text.append(attachment)
          text.append(text2)
          detailLabel.textAlignment = .center
          detailLabel.attributedText = text
          // Do any additional setup after loading the view.
      }
      
      
      @IBAction func back(_ sender: Any) {
          navigationController?.popToRootViewController(animated: true)
      }
      
  
      /*
      // 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.
      }
      */
  
  }