Reputation: 1838
How can I create a horizontally UITableView
?
I don't like to use library.
Upvotes: 0
Views: 61
Reputation: 46
UITableView is not meant to be used for horizontal scrolling. A Table View's core function is to display vertically scrolling content with sections and rows. If horizontal scrolling is what you need, please look into UICollectionViews.
Upvotes: 1