0

編集:助けようとしたすべての人に感謝します.2つの UIScrollViews を再利用して時間を節約しようとしていました. しかし、UIScrollView アプローチでは時間を節約できないようです。そのため、ビューを完全に手作業でコーディングしています。

画面の一部で重なっている 2 つの UIScrollView があります。1 つは水平スクロールのみ、もう 1 つは垂直スクロールのみです。

   -----
   | | | |
   | | | |
   | | | |
   | | | |
|--+---+----------|
| | | | あ | | |
|--+---+----------|
   | | | |
   | | | |
   -----

1つのスクロールビューで領域「A」の水平スワイプジェスチャを処理し、もう1つのスクロールビューで垂直スワイプジェスチャを処理したいのですが、これを機能させることができないようです。

これにアプローチする方法について何か考えがある人はいますか?

4

2 に答える 2

1

Would handling touchesBegan, touchesMoved and touchesEnded in the scroll view that is getting the touch events and manually calling them on the other scroll view work?

You could also scroll the other scroll view by handling the scroll view delegate in the scroll view getting the touches.

于 2013-06-14T15:32:45.873 に答える