I have UITableView in my app with 2 columns.I can read column 1 and half of column 2.My questions are-
can we add horizontal scroll by use of interface builder in uitableview so i can read column 2 for all cells in table?
should we have to add some code for that too or its only possible with interface builder?
First, the row in the

UITableViewdoesn’t scrolls itself inside theUITableView.My solution (I know someone will come out with something better)
Is to use an
UIScrollViewand then inside add theUITableView.This
UIScrollViewwill have the same size that yourUITableViewhave now, but theUIScrollViewcontentSize property will have the same height but it would have a greater width.