43 lines
1.0 KiB
Swift
43 lines
1.0 KiB
Swift
//
|
|
// RDReaderGestureController.swift
|
|
// RDReaderDemo
|
|
//
|
|
// Created by yangsq on 2021/8/10.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
class RDReaderGestureController: UIViewController {
|
|
var topToolView: UIView?
|
|
var bottomToolView: UIView?
|
|
init(topToolView: UIView?, bottomToolView: UIView?) {
|
|
self.topToolView = topToolView
|
|
self.bottomToolView = bottomToolView
|
|
super.init(nibName: nil, bundle: nil)
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
|
|
/*
|
|
// MARK: - Navigation
|
|
|
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
|
|
// Get the new view controller using segue.destination.
|
|
// Pass the selected object to the new view controller.
|
|
}
|
|
*/
|
|
|
|
}
|