26 lines
564 B
Swift
26 lines
564 B
Swift
//
|
|
// BubbleKnowledgeVC.swift
|
|
// QuickLocation
|
|
//
|
|
|
|
import UIKit
|
|
|
|
final class BubbleKnowledgeVC: BaseViewController {
|
|
|
|
override var isNavigationBarHidden: Bool { true }
|
|
|
|
private var rootView: BubbleKnowledgeView!
|
|
|
|
override func loadView() {
|
|
rootView = BubbleKnowledgeView(frame: UIScreen.main.bounds)
|
|
view = rootView
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
rootView.navView.onBackTapped = { [weak self] in
|
|
self?.navigationController?.popViewController(animated: true)
|
|
}
|
|
}
|
|
}
|