この記事で未解決だったUIScrollViewで、同時にピンチとスワイプを実装について。 一応、実装できたので、備忘メモ。 [前のエントリー] http://www.studio23c.com/ria/2009/02/iphonesdkuiscrollview-touch.html UIScrollViewクラスのサブクラスを作るまでは、同じです。 んで、このサブクラスにtouchesメソッドを実装するのだが、 以下の様に、touchesBegan, touchesMoved, touchesEnded 全てについて、書く。 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *to = [touches anyObject]; [super touchesBegan:touches