remove debug message
This commit is contained in:
parent
63a0ad8fe6
commit
045fd2f1f2
1 changed files with 0 additions and 2 deletions
|
|
@ -50,11 +50,9 @@ class PasswordDetailTableViewController: UITableViewController, UIGestureRecogni
|
||||||
}
|
}
|
||||||
|
|
||||||
func tapMenu(recognizer: UITapGestureRecognizer) {
|
func tapMenu(recognizer: UITapGestureRecognizer) {
|
||||||
print("tap")
|
|
||||||
if recognizer.state == UIGestureRecognizerState.ended {
|
if recognizer.state == UIGestureRecognizerState.ended {
|
||||||
let tapLocation = recognizer.location(in: self.tableView)
|
let tapLocation = recognizer.location(in: self.tableView)
|
||||||
if let tapIndexPath = self.tableView.indexPathForRow(at: tapLocation) {
|
if let tapIndexPath = self.tableView.indexPathForRow(at: tapLocation) {
|
||||||
print(tapIndexPath)
|
|
||||||
if let tappedCell = self.tableView.cellForRow(at: tapIndexPath) as? LabelTableViewCell {
|
if let tappedCell = self.tableView.cellForRow(at: tapIndexPath) as? LabelTableViewCell {
|
||||||
tappedCell.becomeFirstResponder()
|
tappedCell.becomeFirstResponder()
|
||||||
let menuController = UIMenuController.shared
|
let menuController = UIMenuController.shared
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue