1. ホーム
  2. アイオス

[解決済み】UIViewにタッチイベントを追加する方法は?

2022-04-01 16:58:34

質問

UIViewにタッチイベントを追加するには?

試しています。

UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, nextY)] autorelease];
[headerView addTarget:self action:@selector(myEvent:) forControlEvents:UIControlEventTouchDown];
// ERROR MESSAGE: UIView may not respond to '-addTarget:action:forControlEvents:'

サブクラスを作成して上書きするのは避けたい

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

解決方法は?

iOS 3.2以降では、ジェスチャー認識機能を利用することができます。例えば、タップイベントを処理する場合、このようになります。

//The setup code (in viewDidLoad in your view controller)
UITapGestureRecognizer *singleFingerTap = 
  [[UITapGestureRecognizer alloc] initWithTarget:self 
                                          action:@selector(handleSingleTap:)];
[self.view addGestureRecognizer:singleFingerTap];

//The event handling method
- (void)handleSingleTap:(UITapGestureRecognizer *)recognizer
{
  CGPoint location = [recognizer locationInView:[recognizer.view superview]];

  //Do stuff here...
}

内蔵のジェスチャーもたくさんあります。iOS のイベント処理に関するドキュメントをチェックし UIGestureRecognizer . また、サンプルコードを ギズーブ が参考になるかもしれません。