I want to create a table view with both horizontal and vertical scrolling. The content in each row will be label with text. The horizontal scrolling should there when the label size increases the width of the table view. (ie, I dont want to show label’s text like “abcdefg…”) Is it possible?
Share
Set the
UIScrollViewcontentSize property through code and make sure thatUIScrollViewcontentSize property will have the same height but it would have a greater width than tableView.OR
You can use an
UIScrollViewand then inside add theUITableView. ThisUIScrollViewwill have the same size that yourUITableViewhave now, but theUIScrollViewcontentSize property will have the same height but it would have a greater width.