Blame view

HDFwear/Basic/View/LTScrollView/LTTitleView/LTPageTitleItemView.swift 415 Bytes
f2cf74c7   yangbin   1.0.20(4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  //
  //  LTPageTitleItemView.swift
  //  LTScrollView_Example
  //
  //  Created by 高刘通 on 2020/8/22.
  //  Copyright © 2020 CocoaPods. All rights reserved.
  //
  
  import UIKit
  
  @objc public class LTPageTitleItemView: UIButton {
  
      public override init(frame: CGRect) {
          super.init(frame: frame)
      }
      
      required init?(coder: NSCoder) {
          fatalError("init(coder:) has not been implemented")
      }
  }