Reputation: 513
How to remove the default space between tableview cells in tvos? By default its taking 14px gap between the tableview cell in tvos,but i need to increase the space by 20px.
Upvotes: 4
Views: 895
Reputation: 2169
The tableview adds that space for the focus animation, use a collectionview instead since it doesn't have a focus animation. You'll have to add the animation yourself though.
Upvotes: 6