Belki de UILongPressGestureRecognizer'ı kullanmak en yaygın çözümdür. Ama bununla iki can sıkıcı sorunla karşılaşıyorum:
- bazen bu tanıyıcı, dokunuşumuzu hareket ettirdiğimizde yanlış şekilde çalışır;
- tanıyıcı, diğer dokunma eylemlerini engeller, bu nedenle UICollectionView'umuzun vurgulama geri aramalarını uygun bir şekilde kullanamayız.
Biraz kaba kuvvet önermeme izin verin, ancak gerektiği gibi çalışarak öneri:
Hücreye uzun tıklama için bir geri arama açıklaması bildirmek:
typealias OnLongClickListener = (view: OurCellView) -> Void
UICollectionViewCell'i değişkenlerle genişletme (örneğin, OurCellView olarak adlandırabiliriz):
/// To catch long click events.
private var longClickListener: OnLongClickListener?
/// To check if we are holding button pressed long enough.
var longClickTimer: NSTimer?
/// Time duration to trigger long click listener.
private let longClickTriggerDuration = 0.5
Hücre sınıfımıza iki yöntem eklemek:
/**
Sets optional callback to notify about long click.
- Parameter listener: A callback itself.
*/
func setOnLongClickListener(listener: OnLongClickListener) {
self.longClickListener = listener
}
/**
Getting here when long click timer finishs normally.
*/
@objc func longClickPerformed() {
self.longClickListener?(view: self)
}
Ve burada dokunma olaylarını geçersiz kılıyor:
/// Intercepts touch began action.
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
longClickTimer = NSTimer.scheduledTimerWithTimeInterval(self.longClickTriggerDuration, target: self, selector: #selector(longClickPerformed), userInfo: nil, repeats: false)
super.touchesBegan(touches, withEvent: event)
}
/// Intercepts touch ended action.
override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {
longClickTimer?.invalidate()
super.touchesEnded(touches, withEvent: event)
}
/// Intercepts touch moved action.
override func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) {
longClickTimer?.invalidate()
super.touchesMoved(touches, withEvent: event)
}
/// Intercepts touch cancelled action.
override func touchesCancelled(touches: Set<UITouch>?, withEvent event: UIEvent?) {
longClickTimer?.invalidate()
super.touchesCancelled(touches, withEvent: event)
}
Ardından, geri arama dinleyicisini bildiren koleksiyon görünümümüzün denetleyicisinde bir yerde:
let longClickListener: OnLongClickListener = {view in
print("Long click was performed!")
}
Ve son olarak, cellForItemAtIndexPath , hücrelerimiz için geri arama ayarında:
/// Data population.
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath)
let castedCell = cell as? OurCellView
castedCell?.setOnLongClickListener(longClickListener)
return cell
}
Artık hücrelerimizdeki uzun tıklama eylemlerini durdurabiliriz.
UICollectionViewCell* cell = [self.collectionView cellForItemAtIndexPath:indexPath];
referans burada tüm bunların doğru bir cevabı hak ettiğini umuyoruz: D