5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Viewのタッチを排他制御しよう

Last updated at Posted at 2016-07-17

はじめに

わりと重要だと思われるボタン同時押しなどを防ぐ排他制御に使うプロパティ"exclusiveTouch"。
この前ようやく使う機会があった(使った事はあったけど、完全に忘れていた可能性もありますが。)ので、記事にしてみることにしました。

exclusiveTouchとは

ぐぐってみると、UIButtonで使用する例が沢山出てきますが、実は"exclusiveTouch"はUIViewクラスのプロパティです。

exclusiveTouch

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のサブクラスの同時押しを禁止するのにとても便利です。
同時押しを許す設計以外では、こまめに設定しておくと良いと感じました。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?