I have made horizontally scrollable UITableView by adding a table view to a UISrollView and setting the scroll View frame to be what i want to display and making its content size large enough to hold the table inside it. It works perfectly fine. Now what i need to do is freeze the first column (that is not scroll it horizontally) but remaining table should horizontally.
I thought of doing this. Have a table view A and a UiScrollview containing a table view B aligned. And populate the first column data in table A and populate the remaining columns data in table B. This i feel should work for horizontal scrolling but then it wont have proper vertical scrolling as in the vertical scrolling wont be aligned. So the solution to this mite be to relatively scrolling table A vertically when table B is scrolled vertically and vice versa. But i am not how would i implement this. Any ideas.
Or is there an easier way of doing this.
Thanks
AJ
use two different tableviews. one inside scrollviw and the other outside it. then try using scrollview delegates to scroll through both tableviews simultaneously