-
-
Notifications
You must be signed in to change notification settings - Fork 487
/
Copy pathGesturePassTextView.swift
41 lines (39 loc) · 1.22 KB
/
GesturePassTextView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// GesturePassTextView.swift
// Bark
//
// Created by huangfeng on 2023/7/26.
// Copyright © 2023 Fin. All rights reserved.
//
import UIKit
class GesturePassTextView: UITextView {
var superCell: UITableViewCell? = nil
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
if let cell = superCell {
cell.touchesBegan(touches, with: event)
return
}
super.touchesBegan(touches, with: event)
}
override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
if let cell = superCell {
cell.touchesMoved(touches, with: event)
return
}
super.touchesMoved(touches, with: event)
}
override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
if let cell = superCell {
cell.touchesEnded(touches, with: event)
return
}
super.touchesEnded(touches, with: event)
}
override func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
if let cell = superCell {
cell.touchesCancelled(touches, with: event)
return
}
super.touchesCancelled(touches, with: event)
}
}