iOSデバイスでタッチイベントが処理される方法を調査しています。私はこの本を参照しました:iOS OpenApplicationDevelopment。そのために、mouseDown、mouseUpメソッドをオーバーライドし、アラートボックスに座標を表示しています。ただし、オーバーライドされたメソッドが呼び出されることはありません。以下は、UIViewから派生したnewViewクラスのコードです。
-(void) _mouseDown: (GSEventRef) event{
CGPoint point =GSEventGetLocationInWindow(event);
UIAlertView* alert;
NSString* alertString =[NSString stringWithFormat: @"%f %f", point.x, point.y];
alert = [[UIALertView alloc] initWithTitle:@"Success" message:alertString delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
}
-(BOOL) canHandleGestures{
return YES;
}
足りない部分はありますか?また、タッチイベントに関する情報を取得して処理する別の方法はありますか?