はじめに
わりと重要だと思われるボタン同時押しなどを防ぐ排他制御に使うプロパティ"exclusiveTouch"。
この前ようやく使う機会があった(使った事はあったけど、完全に忘れていた可能性もありますが。)ので、記事にしてみることにしました。
exclusiveTouchとは
ぐぐってみると、UIButtonで使用する例が沢山出てきますが、実は"exclusiveTouch"はUIViewクラスのプロパティです。
Swiftならtrue、Obj-CならYESを代入すると、同時押しを禁止することができます。
nohirapView.exclusiveTouch = true
nohirapView.exclusiveTouch = YES;
この前使った時
例
UIButtonではなく、UICollectionViewのヘッダーとセルで使用しました。
だいぶ変更したり端折りましたが、以下の感じです。
//MARK:- UICollectionViewDataSource
extension NohirapViewController: UICollectionViewDataSource {
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("NohirapCollectionViewCell", forIndexPath: indexPath) as! NohirapCollectionViewCell
// この辺りでセルのアイテムをセットする
cell.exclusiveTouch = true
return cell
}
func collectionView(collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, atIndexPath indexPath: NSIndexPath) -> UICollectionReusableView {
if kind == UICollectionElementKindSectionHeader {
if let bannerView = collectionView.dequeueReusableSupplementaryViewOfKind(kind, withReuseIdentifier: "NohirapBannerCollectionViewCell", forIndexPath: indexPath) as? NohirapBannerCollectionViewCell {
bannerView.exclusiveTouch = true
return bannerView
}
}
// この辺りで色々やる
}
}
何故使ったか
実は、今携わっている案件のテストチームが見つけたバグがきっかけでした。
正直、collectionViewのヘッダーやセルの同時押しは想定していませんでしたが、ユーザーには様々な方がいらっしゃると思うので、こういった裏技的な操作に対応する時なんかに"exclusiveTouch"は重宝する気がします。
まとめ
exclusiveTouchはUIButtonやUICollectionViewCellなど、UIViewのサブクラスの同時押しを禁止するのにとても便利です。
同時押しを許す設計以外では、こまめに設定しておくと良いと感じました。