UpdateAlertView.swift 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // UpdateAlertView.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2019/1/3.
  6. // Copyright © 2019年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class UpdateAlertView: UIView {
  10. @IBOutlet weak var btnUpgrade: UIButton!
  11. @IBOutlet weak var btnClose: UIButton!
  12. @IBOutlet weak var lblContent: UITextView!
  13. /*
  14. // Only override draw() if you perform custom drawing.
  15. // An empty implementation adversely affects performance during animation.
  16. override func draw(_ rect: CGRect) {
  17. // Drawing code
  18. }
  19. */
  20. @IBAction func btnCloseClick(_ sender: Any) {
  21. appDelegate.navController.hiddenBackgroudView()
  22. }
  23. @IBAction func btnUpdate(_ sender: Any) {
  24. if upGradeUrl != "" {
  25. UIApplication.shared.openURL(NSURL(string: upGradeUrl)! as URL)
  26. }
  27. }
  28. var upGradeUrl = ""
  29. func initView(alert: String, upgradeUrl: String) {
  30. self.setSizeWidth(width: ScreenWidth - 80)
  31. upGradeUrl = upgradeUrl
  32. lblContent.text = alert
  33. lblContent.sizeToFit()
  34. if lblContent.height() > 130 {
  35. lblContent.setSizeHeight(height: 130)
  36. } else if lblContent.height() < 40 {
  37. lblContent.setSizeHeight(height: 40)
  38. }
  39. btnUpgrade.setCornerRadius(size: 8)
  40. self.setCornerRadius(size: 12)
  41. btnUpgrade.marginTop(top: 20, view: lblContent)
  42. self.setSizeHeight(height: btnUpgrade.bottom() + 30)
  43. }
  44. }