1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // NavView.swift
- // xingchuangke
- //
- // Created by Virgil on 2019/3/26.
- // Copyright © 2019 Virgil. All rights reserved.
- //
- import UIKit
- class NavView: UIView {
- @IBOutlet weak var imgBackgroud: UIImageView!
- @IBOutlet weak var viewTop: UIView!
- @IBOutlet weak var lblTitle: UILabel!
- @IBOutlet weak var btnLeft: UIButton!
- @IBOutlet weak var btnRight: UIButton!
- var commonReBack: RebackFunction?
- func initView(title: String, reback:@escaping RebackFunction) {
- self.setSizeWidth(width: ScreenWidth)
- lblTitle.text = title
- commonReBack = reback
- if CommonUntils.isIphonex() {
- self.setSizeHeight(height: 88)
- } else {
- self.setSizeHeight(height: 64)
- }
- }
- @IBAction func btnRightClick(_ sender: Any) {
- if commonReBack != nil {
- commonReBack!(1, "")
- }
- }
- @IBAction func btnLeftClick(_ sender: Any) {
- if commonReBack != nil {
- commonReBack!(0, "")
- }
- }
- func initRightBtn(title: String) {
- btnRight.isHidden = false
- btnRight.setTitle(title, for: .normal)
- }
- func initRightBtn(img: UIImage) {
- btnRight.isHidden = false
- btnRight.setImage(img, for: .normal)
- }
- }
|