複数のセルを選択するために UICollectionView で Swipe-Gesture を使用したいのですが、これをどのように実装できますか?
ありがとうございました
UIPanGestureRecognizer と allowMultipleSelection を使用して解決する
UIPanGestureRecognizer *panning = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(handlePanning:)];
panning.minimumNumberOfTouches = 1;
panning.maximumNumberOfTouches = 1;
[self.storeLayoutGrid addGestureRecognizer:panning];