Per prima cosa il controller di visualizzazione deve essere UIGestureRecognizerDelegate
. Quindi aggiungere un UILongPressGestureRecognizer al vostro CollectionView in viewDidLoad()
il metodo del viewcontroller
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)
}
Il metodo per gestire pressione lunga:
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")
}
}
Questo codice è basato sulla versione Objective-C di this answer.
Mostraci cosa hai provato. – rdelmar
Ho provato così tante cose che sarebbe impossibile mettere tutto questo qui dentro. Ho provato a utilizzare le informazioni a questi link: http://stackoverflow.com/questions/23392485/change-background-of-uicollectionview-cell-on-tap - http://www.tagwith.com/question_73045_delete-uicollectionviewcell- with-uilongpressgesturerecognizer? ref = driverlayer.com/web - http://www.freshconsulting.com/create-drag-and-drop-uitableview-swift/ TONS di altre pagine. – webmagnets