emacs/snippets/swift-mode/uicollectionviewdelegate

15 lines
349 B
Plaintext

# -*- mode: snippet -*-
# name: uiCollectionViewDelegate
# key: uiCollectionViewDelegate
# --
// MARK: UICollectionViewDelegate
func collectionView(_ collectionView: UICollectionView,
didSelectItemAt indexPath: IndexPath) {
}
func collectionView(_ collectionView: UICollectionView,
didDeselectItemAt indexPath: IndexPath) {
}