NavView.swift 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // NavView.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/26.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class NavView: UIView {
  10. @IBOutlet weak var imgBackgroud: UIImageView!
  11. @IBOutlet weak var viewTop: UIView!
  12. @IBOutlet weak var lblTitle: UILabel!
  13. @IBOutlet weak var btnLeft: UIButton!
  14. @IBOutlet weak var btnRight: UIButton!
  15. var commonReBack: RebackFunction?
  16. func initView(title: String, reback:@escaping RebackFunction) {
  17. self.setSizeWidth(width: ScreenWidth)
  18. lblTitle.text = title
  19. commonReBack = reback
  20. if CommonUntils.isIphonex() {
  21. self.setSizeHeight(height: 88)
  22. } else {
  23. self.setSizeHeight(height: 64)
  24. }
  25. }
  26. @IBAction func btnRightClick(_ sender: Any) {
  27. if commonReBack != nil {
  28. commonReBack!(1, "")
  29. }
  30. }
  31. @IBAction func btnLeftClick(_ sender: Any) {
  32. if commonReBack != nil {
  33. commonReBack!(0, "")
  34. }
  35. }
  36. func initRightBtn(title: String) {
  37. btnRight.isHidden = false
  38. btnRight.setTitle(title, for: .normal)
  39. }
  40. func initRightBtn(img: UIImage) {
  41. btnRight.isHidden = false
  42. btnRight.setImage(img, for: .normal)
  43. }
  44. }