セルを長押ししたときにUICollectionViewCellのindexPathを印刷する方法を見つけたいと思います。
どうすればSwiftでそれを行うことができますか?
これを行う方法の例を探しました。 Swiftで見つけることができません。
まず、View ControllerをUIGestureRecognizerDelegate
にする必要があります。次に、viewcontrollerのviewDidLoad()
メソッドでcollectionViewにUILongPressGestureRecognizerを追加します
class ViewController: UIViewController, UIGestureRecognizerDelegate {
override func viewDidLoad() {
super.viewDidLoad()
let lpgr = UILongPressGestureRecognizer(target: self, action: "handleLongPress:")
lpgr.minimumPressDuration = 0.5
lpgr.delaysTouchesBegan = true
lpgr.delegate = self
self.collectionView.addGestureRecognizer(lpgr)
}
長押しを処理する方法:
func handleLongPress(gestureReconizer: UILongPressGestureRecognizer) {
if gestureReconizer.state != UIGestureRecognizerState.Ended {
return
}
let p = gestureReconizer.locationInView(self.collectionView)
let indexPath = self.collectionView.indexPathForItemAtPoint(p)
if let index = indexPath {
var cell = self.collectionView.cellForItemAtIndexPath(index)
// do stuff with your cell, for example print the indexPath
println(index.row)
} else {
println("Could not find index path")
}
}
このコードは、Objective-Cバージョンの this answer に基づいています。
ztan回答はSwift 3構文に変換され、スペルのマイナーな更新:
func handleLongPress(_ gestureRecognizer: UILongPressGestureRecognizer) {
if gestureRecognizer.state != UIGestureRecognizerState.ended {
return
}
let p = gestureRecognizer.location(in: collectionView)
let indexPath = collectionView.indexPathForItem(at: p)
if let index = indexPath {
var cell = collectionView.cellForItem(at: index)
// do stuff with your cell, for example print the indexPath
print(index.row)
} else {
print("Could not find index path")
}
}
Swift 3構文に変換されたメソッドhandleLongProgressは正常に機能します。lpgrの初期化を次のように変更する必要があることを追加します。
let lpgr = UILongPressGestureRecognizer(target: self, action: #selector(handleLongPress(gestureReconizer:)))
私が見つけた一つのことは、それでした:
if gestureReconizer.state != UIGestureRecognizerState.Ended {
return
}
長押しを放すまでピンを配置しません。
if gestureRecognizer.state == UIGestureRecognizerState.Began { }
関数全体で複数のピン配置を防止すると同時に、タイマーの遅延が満たされるとすぐにピンを表示します。
また、上記の1つのタイプミス:Reconizer-> Recognizer
Swift 5&Swift 4 Table View Cell
override func viewDidLoad() {
//MARK:- Add Long Gesture
let longPressGesture = UILongPressGestureRecognizer(target: self, action: #selector(longPressed))
longPressGesture.minimumPressDuration = 1.0 // 1 second press
longPressGesture.allowableMovement = 15 // 15 points
longPressGesture.delegate = self
self.tablev.addGestureRecognizer(longPressGesture)
}
//MARK:- Long Press Gesture
@objc func longPressed(sender: UILongPressGestureRecognizer)
{
if sender.state == UIGestureRecognizer.State.ended {
return
}
else if sender.state == UIGestureRecognizer.State.began
{
let p = sender.location(in: self.tablev)
let indexPath = self.tablev.indexPathForRow(at: p)
if let index = indexPath {
var cell = self.tablev.cellForRow(at: index)
// do stuff with your cell, for example print the indexPath
print(index.row)
print("longpressed Tag: \(index.row)")
} else {
print("Could not find index path")
}
}
}
ztan回答はSwift 4構文に変換され、スペルのマイナーアップデート:
@objc func handleLongPress(_ gestureRecognizer: UILongPressGestureRecognizer) {
guard gestureRecognizer.state != .ended else { return }
let point = gestureRecognizer.location(in: collectionView)
if let indexPath = collectionView.indexPathForItem(at: point),
let cell = collectionView.cellForItem(at: indexPath) {
// do stuff with your cell, for example print the indexPath
print(indexPath.row)
} else {
print("Could not find index path")
}
}