- 实现EPUB阅读器搜索功能及选中注释功能 - 优化CFI模块,修复代码审查发现的11个问题 - 实现大书远距目录跳转与后台补全优化方案 - 优化设置面板与章节运行时联动 - 重构及大量改进优化
35 lines
882 B
Swift
35 lines
882 B
Swift
import UIKit
|
|
|
|
open class RDEPUBReaderToolView: UIView {
|
|
|
|
private let lineView = UIView()
|
|
|
|
private let lineHeight: CGFloat = 0.5
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
translatesAutoresizingMaskIntoConstraints = false
|
|
addSubview(lineView)
|
|
}
|
|
|
|
public required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
open override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
lineView.frame = lineFrame(in: bounds)
|
|
}
|
|
|
|
open func apply(theme: RDEPUBReaderTheme) {
|
|
backgroundColor = .white
|
|
lineView.backgroundColor = UIColor.lightGray.withAlphaComponent(0.5)
|
|
}
|
|
|
|
open func lineFrame(in bounds: CGRect) -> CGRect {
|
|
CGRect(x: 0, y: 0, width: bounds.width, height: lineHeight)
|
|
}
|
|
}
|
|
|
|
final class RDEPUBReaderTintButton: UIButton {
|
|
} |