CalcResultView.swift 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // CalcResultView.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/23.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class CalcResultView: UIView {
  10. @IBOutlet weak var btnClose: UIButton!
  11. @IBOutlet weak var lblMoney: UILabel!
  12. var backFunc: RebackFunction!
  13. func initView(money: String, reBackFunc:@escaping RebackFunction) {
  14. backFunc = reBackFunc
  15. if ScreenWidth == 30 {
  16. self.setSizeWidth(width: ScreenWidth - 40)
  17. } else if ScreenWidth == 375 {
  18. self.setSizeWidth(width: ScreenWidth - 60)
  19. } else {
  20. self.setSizeWidth(width: ScreenWidth - 80)
  21. }
  22. self.setCornerRadius(size: 12)
  23. let strMoney = "\(money)元"
  24. lblMoney.attributedText = CommonViewUntils.getAttributedStringForFont(str: strMoney, rangs: [NSRange.init(location: 0, length: strMoney.length() - 1), NSRange.init(location: strMoney.length() - 1, length: 1)], fonts: [UIFont.systemFont(ofSize: 38), UIFont.systemFont(ofSize: 16)])
  25. btnClose.setCornerRadius(size: 8)
  26. }
  27. @IBAction func btnCloseClick(_ sender: Any) {
  28. backFunc(0, "")
  29. appDelegate.navController.hiddenBackgroudViewNoAnimate()
  30. }
  31. }