Hi Guys, what I am looking at building is a table view that scrolls vertically and horizontally. I also want the first column to be frozen e.g when I scroll to the right this column does not move! My initial thinking is to have two table views. One thin one on the left with the “frozen” column. The other right next two it inside a scroll view. I would then just need to link the vertical scrolling together between the two tables? Does this sound like the best way of achieving my goal?
that sounds like resonable idea you could put invisible rect on top of both that will pass touch events to both scroll views.
You may want to use a group instead of a scrollview and horizontally animate based on the tableviews’ touch events.
PS: If you follow the group approach you may get flicker (a clipping artifact, perhaps) when scrolling horizontally even if the tableviews are adjacent to one another. Can be solved by placing a non-scrolling rectangle of the correct background color behind them.
that sounds like resonable idea you could put invisible rect on top of both that will pass touch events to both scroll views.
You may want to use a group instead of a scrollview and horizontally animate based on the tableviews’ touch events.
PS: If you follow the group approach you may get flicker (a clipping artifact, perhaps) when scrolling horizontally even if the tableviews are adjacent to one another. Can be solved by placing a non-scrolling rectangle of the correct background color behind them.