Ver Fonte

some haptic feedback on entering multi-select mode

B. Petersen há 3 anos atrás
pai
commit
2149e64b3a
1 ficheiros alterados com 2 adições e 0 exclusões
  1. 2 0
      deltachat-ios/View/ContactCell.swift

+ 2 - 0
deltachat-ios/View/ContactCell.swift

@@ -219,6 +219,8 @@ class ContactCell: UITableViewCell {
         if sender.state == UIGestureRecognizer.State.began,
            let tableView = self.superview as? UITableView,
            let indexPath = tableView.indexPath(for: self) {
+            let generator = UIImpactFeedbackGenerator(style: .medium)
+            generator.impactOccurred()
             delegate?.onLongTap(at: indexPath)
         }
     }